Select type Property
Example
Return which type of form element a drop-down list is:
var x = document.getElementById("mySelect").type;
Try it Yourself »
Description
The type property returns which type of form element a drop-down list is.
For a drop-down list this will be "select-one" or "select-multiple".
Browser Support
Property | |||||
---|---|---|---|---|---|
type | Yes | Yes | Yes | Yes | Yes |
Syntax
selectObject.type
Technical Details
Return Value: | A String, representing the type of form element the drop-down list (<select> element) is |
---|
More Examples
Example
Return which type of form element a drop-down list that allows multiple selections is:
var x = document.getElementById("mySelect").type;
Try it Yourself »
❮ Select Object