onChange event
Hi All,
I am using the "onChange" event in <SELECT> tag.
When I pick the first item in the drop down list, the "onChange" event fires. But if I pick the same item again, it doesn't fire.
I believe this is the normal process.
But, how I can make it work?
Thanks for your help,
<HTML>
<HEAD>
<script language=javascript>
function ShowValue()
{
alert(form1.DD1.value);
}
</script>
</HEAD>
<BODY>
<form name=form1>
<select name=DD1 onChange="javascript:ShowValue()">
<option value=1>Item 1</option>
<option value=2>Item 2</option>
<option value=3>Item 3</option>
</select>
</form>
</BODY>
</HTML>
:)
MCinar
Love all the creatures because of the creator.
__________________
MCinar
Love all the creatures because of the creator.
|