Tags: onclick,ie
Sort by: Date /
Title /
-
Remove the events from the options, use an event directly on the select instead.
function myfunc(value) {
alert(value);
}
...
<select onchange="myfunc(this.options[this.selectedIndex].value)">
</select>
First / Previous / Next / Last / Page 1 of 1 (1 posteets)