Remove the events from the options, use an event directly on the select instead. function myfunc(value) { alert(value); } … <select onchange=“myfunc(this.options.value)”> ...
Tag: select
<input type=“file” onchange=“this.submit()” name=“myfile” /> Note html / javscript