Javascript examples for DOM HTML Element:Select
Select options Collection - Remove the option with index "1" from a drop-down list:
<!DOCTYPE html> <html> <body> <form> <select id="mySelect" size="4"> <option>Apple</option> <option>Pear</option> <option>Banana</option> <option>Orange</option> </select> </form>/*from ww w. j av a 2 s . c om*/ <br> <button onclick="myFunction()">Remove option with index "1"</button> <script> function myFunction() { var x = document.getElementById("mySelect"); x.options.remove(1); } </script> </body> </html>