Input Datetime max Property
Example
Get the maximum date and time allowed for a datetime field:
var x = document.getElementById("myDatetime").max;
Try it Yourself »
Description
The max property sets or returns the value of the max attribute of a datetime field.
The max attribute specifies the maximum value (date and time) for a datetime 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="datetime"> element does not show any datetime field/calendar in any major browsers, except Safari.
Syntax
Return the max property:
datetimeObject.max
Set the max property:
datetimeObject.max = YYYY-MM-DDThh:mm:ssTZD
Property Values
Value | Description |
---|---|
YYYY-MM-DDThh:mm:ssTZD |
Specifies the maximum date and/or time allowed for the datetime field. Explanation of components:
|
Technical Details
Return Value: | A String, representing the maximum date and time allowed |
---|
More Examples
Example
Change the maximum date and time:
document.getElementById("myDatetime").max = "2012-01-01T11:57Z";
Try it Yourself »
Related Pages
HTML reference: HTML <input> max attribute
❮ Input Datetime Object