THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Input Time type Property

Input Time Object Reference Input Time Object

Example

Return which type of form element the time field is:

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

The result of x could be:

time
Try it yourself »

Definition and Usage

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

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


Syntax

timeObject.type

Technical Details

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

Input Time Object Reference Input Time Object