FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

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/Edge and Firefox returns "text".


Browser Support

Property
type Yes 10.0 Yes Yes Yes

Note: The <input type="time"> element does not show as any time field in 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