Count Options In Select Tag with JavaScript

In this tutorial we will see how to Count Options In Select Tag with JavaScript. HTML DOM .options property and .length property is used for this which will count the options of select tag.

HTML Code

HTML code is given below, in this code we have a select tag with four options and a button tag with onclick event.

<select name="lang" id="lang">
<option value="html">HTML</option>    
<option value="css">CSS</option>    
<option value="javascript">JavaScript</option>
<option value="php">PHP</option>        
</select> 
    
<button onclick="count()">Count Options</button>

JavaScript Code

JavaScript Code is given, in this code we have used .options property of HTML DOM and .length property.

The .options property returns the collection of all options present inside the select tag.

.options[0] represents the first option of select tag, similarly .options[1] represents the second option and so on.

length property returns the length of a string. In this example it will return the number of options.

<script>
function count()
{
var options=document.getElementById('lang').options.length;
alert(options);    
}
</script>

Demo

Video Tutorial

Watch our video tutorial on Count Options In Select Tag with JavaScript.

Change font-size using JavaScript Get Font Size of any Tag using JavaScript Change Position of HTML Element using JavaScript How to Change Image on Hover with JavaScript How to Disable Button by Class Name in JavaScript How To Change Image Size with JavaScript How to change Image opacity with JavaScript How to Change image src on click with JavaScript How to get the lang attribute value in JavaScript How to Get attribute Value using JavaScript How To Check if Attribute Exists or not with JavaScript How To Count number of links on Page with JavaScript How To Scroll Page to Bottom using JavaScript How To Detect Shift Key Press with JavaScript Change Text Color On Hover with JavaScript Hide and Show div using JavaScript Get Button text with JavaScript Get textarea value with JavaScript Get table row Height with JavaScript Auto Increase width of input field with JavaScript Set Textarea maxLength with JavaScript Set Textarea Value with JavaScript JavaScript Count list items JavaScript set input field value Count Button Clicks with JavaScript Scroll Page to the Top on Click with JavaScript