Run ❯
zig
.
com
Result Size:
625 x 565
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <body> <form> <select id="mySelect" size="4"> <option>Apple</option> <option>Pear</option> <option>Banana</option> <option>Orange</option> </select> </form> <br> <button onclick="myFunction()">Remove option with index "1"</button> <script> function myFunction() { var x = document.getElementById("mySelect"); x.options.remove(1); } </script> </body> <!-- /jsref/tryit.asp?filename=tryjsref_select_options8 Thu, 06 Feb 2025 20:01:16 GMT --> </html>