HTML | DOM Select multiple Property
The Select multiple property in HTML DOM is used to set or return whether more than one option can be selected from a drop-down list or not. It returns true if multiple selection in the drop-down list is enabled, otherwise returns false.
Syntax:
- It returns the select multiple property.
selectObject.multiple
- It is used to set select multiple property.
selectObject.multiple = true|false
Property Values: It contains two values either true or false which is used to specify whether multiple selection in the drop-down list is enabled or not.
Below program illustrates the Select multiple property in HTML DOM:
Example: This example uses Select multiple property to allow multiple selection in a drop-down list.
<!DOCTYPE html> <html> <head> <title> HTML DOM Select multiple Property </title> </head> <body style="text-align:center;"> <h1 style="color:green;"> GeeksforGeeks </h1> <h2 style="font-family: Impact;"> Select multiple Property </h2><br> Select your preferred course from the drop-down list:<br> <select id="myCourses" size="4"> <option value="C++">c++</option> <option value="Placement">Placement</option> <option value="Java">Java</option> <option value="Python">Python</option> </select> <p> To enable multiple selection, double-click the "Enable Multiple Selection" button. </p> <button ondblclick="myGeeks()"> Enable Multiple Selection </button> <p id="GFG"></p> <script> function myGeeks() { document.getElementById("myCourses").multiple = true; document.getElementById("GFG").innerHTML = "Multiple options can be selected now" + " from the drop down list."; } </script> </body> </html> |
Output:
Before Clicking the button:

After Clicking the button:

Supported Browsers: The browser supported by DOM Select multiple Property are listed below:
- Apple Safari
- Internet Explorer
- Firefox
- Google Chrome
- Opera
Recommended Posts:
- HTML | <select> multiple Attribute
- How to select and upload multiple files with HTML and PHP, using HTTP POST?
- HTML | DOM Select value Property
- HTML | DOM Select name Property
- HTML | DOM Select length Property
- HTML | DOM Select form Property
- HTML | DOM Select selectedIndex Property
- HTML | DOM Select disabled Property
- HTML | DOM Select autofocus Property
- HTML | DOM Select type Property
- HTML | DOM Select size Property
- HTML | DOM Input Email multiple Property
- HTML | DOM Input FileUpload multiple Property
- How to get multiple selected values of select box in php?
- CSS | user-select Property
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



