Select options Collection - Remove the option with index "1" from a drop-down list: - Javascript DOM HTML Element

Javascript examples for DOM HTML Element:Select

Description

Select options Collection - Remove the option with index "1" from a drop-down list:

Demo Code

ResultView the demo in separate window

<!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>

Related Tutorials