Option text Property - Get the text of all options in a drop-down list: - Javascript DOM HTML Element

Javascript examples for DOM HTML Element:Option

Description

Option text Property - Get the text of all options in a drop-down list:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

Select your favorite fruit:
<select id="mySelect">
  <option>Apple</option>
  <option>Orange</option>
  <option>Pineapple</option>
  <option>Banana</option>
</select>/*from w  w  w  .jav  a  2s  . co m*/

<button type="button" onclick="myFunction()">Test</button>

<script>
function myFunction() {
    var x = document.getElementById("mySelect");
    var txt = "All options: ";
    var i;
    for (i = 0; i < x.length; i++) {
        txt = txt + "\n" + x.options[i].text;
    }

console.log(txt);
}
</script>

</body>
</html>

Related Tutorials