THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Input Month type Property

Input Month Object Reference Input Month Object

Example

Return which type of form element the month field is:

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

The result of x could be:

month
Try it yourself »

Definition and Usage

The type property returns which type of form element the month field is.

Note: In the example above, Opera, Chrome and Safari returns "month", while Internet Explorer and Firefox returns "text".


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The type property is supported in all major browsers.

Note: The <input type="month"> element is not supported in Internet Explorer or Firefox.


Syntax

monthObject.type

Technical Details

Return Value: A String, representing the type of form element the month field is

Input Month Object Reference Input Month Object