Input Datetime type Property
Example
Return which type of form element the datetime field is:
var x = document.getElementById("myDatetime").type;
The result of x could be:
datetime
Try it yourself »
Definition and Usage
The type property returns which type of form element the datetime field is.
Note: In the example above, Safari and Opera 12 (and earlier versions) returns "datetime", while Opera 15 (and newer versions), Internet Explorer, Firefox and Chrome returns "text".
Browser Support
The type property is supported in all major browsers.
Note: The <input type="datetime"> element is not supported in Internet Explorer, Firefox, Opera version 15 (and newer) or Chrome.
Syntax
datetimeObject.type
Technical Details
Return Value: | A String, representing the type of form element the datetime field is |
---|
Input Datetime Object