onClick event on
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… Read More »onClick event on
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… Read More »onClick event on
<input type=“file” onchange=“this.submit()” name=“myfile” /> Note html / javscript