THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Input Time max Property

Input Time Object Reference Input Time Object

Example

Get the maximum time allowed for a time field:

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

The result of x will be:

22:00
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

Internet Explorer Firefox Opera Google Chrome Safari

The max property is supported in all major browsers.

Note: The max property is not supported in Internet Explorer 9 and earlier versions.

Note: The <input type="time"> element is not supported in Internet Explorer or 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:
  • 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 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 Reference Input Time Object