onClick event on does not fire in Internet Explorer by paquai13 December 26, 2016 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)”> ย <option value=“1”>Item1</option> ย <optionย value=“2”>Item2</option> </select> Tags:iejavascriptonclickselect