THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Input Date type Property

Input Date Object Reference Input Date Object

Example

Return which type of form element the date field is:

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

The result of x will be:

date
Try it yourself »

Definition and Usage

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

Note: In the example above, Opera, Chrome and Safari returns "date", 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="date"> element is not supported in Internet Explorer or Firefox.


Syntax

inputdateObject.type

Technical Details

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

Input Date Object Reference Input Date Object