Mega Code Archive

 
Categories / JavaScript Reference / Javascript Collections
 

Options Example

<html> <body> <select id="mySelect">     <option>List Item 1</option>     <option>List Item 2</option>     <option>List Item 3</option> </select> <button onclick="alert(mySelect.options.length);">Number of options in the select list</button> </body> </html>