Select options Collection - Loop through all options in a drop-down list, and output the text of each option: - Javascript DOM HTML Element

Javascript examples for DOM HTML Element:Select

Description

Select options Collection - Loop through all options in a drop-down list, and output the text of each option:

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

Related Tutorials