Input Time max Property
Example
Get the maximum time allowed for a time field:
var x = document.getElementById("myTime").max;
Try it Yourself »
Definition and Usage
The max property sets or returns the value of the max attribute of a time field.
The max attribute specifies the maximum value (time) for a time field.
Tip: Use the max attribute together with the min attribute to create a range of legal values.
Tip: To set or return the value of the min attribute, use the min property.
Browser Support
Property | |||||
---|---|---|---|---|---|
max | Yes | 10.0 | Yes | Yes | Yes |
Note: The <input type="time"> element does not show as any time field in Firefox.
Syntax
Return the max property:
timeObject.max
Set the max property:
timeObject.max = hh:mm:ss.ms
Property Values
Value | Description |
---|---|
hh:mm:ss.ms |
Specifies the maximum time allowed for the time field. Explanation of components:
|
Technical Details
Return Value: | A String, representing the maximum time allowed for the time field |
---|
More Examples
Example
Change the maximum time allowed:
document.getElementById("myTime").max = "23:00";
Try it Yourself »
Related Pages
HTML reference: HTML <input> max attribute
❮ Input Time Object