FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

Select type Property

Select Object Reference Select Object

Example

Return which type of form element a drop-down list is:

var x = document.getElementById("mySelect").type;

The result of x will be:

select-one
Try it Yourself »

Definition and Usage

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;

The result of x will be:

select-multiple
Try it Yourself »

Select Object Reference Select Object