Input Time min Property
Example
Get the minimum time allowed for a time field:
var x = document.getElementById("myTime").min;
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:
|
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