THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Input DatetimeLocal type Property

Input DatetimeLocal Object Reference Input DatetimeLocal Object

Example

Return which type of form element the local datetime field is:

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

The result of x could be:

datetime-local
Try it yourself »

Definition and Usage

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

Note: In the example above, Internet Explorer and Firefox returns "text", instead of "datetime-local".


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The type property is supported in all major browsers.

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


Syntax

datetimelocalObject.type

Technical Details

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

Input DatetimeLocal Object Reference Input DatetimeLocal Object