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