Input Date type Property
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
Property | |||||
---|---|---|---|---|---|
type | Yes | 10.0 | Yes | Yes | Yes |
Note: The <input type="date"> element does not show any date field/calendar in Firefox.
Syntax
inputdateObject.type
Technical Details
Return Value: | A String, representing the type of form element the date field is |
---|
Input Date Object