How can I get the onChange option of a SELECT tag to execute a javascript function even if the user selects the currently selectied option?
I.E. I need funct(this) to execute even if the user selects "1" from the list. Right now it only runs if the selection is changed to "2" or "3".
-Craig
Code:
<SELECT onChange="funct(this);">
<OPTION SELECTED value="1">1</OPTION>
<OPTION value="2">2</OPTION>
<OPTION value="3">3</OPTION>
</SELECT>
I.E. I need funct(this) to execute even if the user selects "1" from the list. Right now it only runs if the selection is changed to "2" or "3".
-Craig