Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<select id="mySelect" size="5">
  <option>Cat</option>
  <option>Dog</option>
  <option>Horse</option>
  <option>Elephant</option>
  <option>Mouse</option>
  <option>Fish</option>
  <option>Cow</option>
</select>
<p>Click the button to return the number of visible options in the dropdown list.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
  var x = document.getElementById("mySelect").size;
  document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>