Javascript examples for DOM HTML Element:Select
Select options Collection - Loop through all options in a drop-down list, and output the text of each option:
<!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 www. j a va 2s.c o m <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>