Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<form>
  <select id="mySelect">
    <option id="apple">Apple</option>
    <option id="orange">Orange</option>
    <option id="pineapple">Pineapple</option>
    <option id="banana">Banana</option>
  </select>
</form>
<p>Click the button to display the text of the option element with id="orange" in the drop-down list.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
  var x = document.getElementById("mySelect").options.namedItem("orange").text;
  document.getElementById("demo").innerHTML = x;
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_select_options6 by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 18:16:59 GMT -->
</html>