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

Input Time min Property

Input Time Object Reference Input Time Object

Example

Get the minimum time allowed for a time field:

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

The result of x will be:

20:00
Try it Yourself »

Definition and Usage

The min property sets or returns the value of the min attribute of a time field.

The min attribute specifies the minimum value (time) for a time field.

Tip: Use the min attribute together with the max attribute to create a range of legal values.

Tip: To set or return the value of the max attribute, use the max property.


Browser Support

Property
min Yes 10.0 Yes Yes Yes

Note: The <input type="time"> element does not show as any time field in Firefox.


Syntax

Return the min property:

timeObject.min

Set the min property:

timeObject.min=hh:mm:ss.ms

Property Values

Value Description
hh:mm:ss.ms Specifies the minimum time allowed for the time field.

Explanation of components:
  • hh - hour (e.g. 22 for 10.00pm)
  • mm - minutes (e.g. 30)
  • ss - seconds (e.g. 03)
  • ms - milliseconds (e.g 20)
Examples: "09:55:32.55", "22:15:35" or "16:00".

Technical Details

Return Value: A String, representing the minimum time allowed for the time field

More Examples

Example

Change the minimum value:

document.getElementById("myTime").min = "16:00";
Try it Yourself »

Related Pages

HTML reference: HTML <input> min attribute


Input Time Object Reference Input Time Object