Input DatetimeLocal min Property
Example
Get the minimum date and time allowed for a local datetime field:
var x = document.getElementById("myLocalDate").min;
The result of x will be:
2000-10-06T22:22:55
Try it yourself »
Definition and Usage
The min property sets or returns the value of the min attribute of a local datetime field.
The min attribute specifies the minimum value (date and time) for a local 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
The min property is supported in all major browsers.
Note: The min property is not supported in Internet Explorer 9 and earlier versions.
Note: The <input type="datetime-local"> element is not supported in Internet Explorer or Firefox.
Syntax
Return the min property:
datetimelocalObject.min
Set the min property:
datetimelocalObject.min=YYYY-MM-DDThh:mm:ss.ms
Property Values
Value | Description |
---|---|
YYYY-MM-DDThh:mm:ss.ms |
Specifies the minimum date and time allowed for the local 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("myLocalDate").min = "2006-05-05T16:15:23";
Try it yourself »
Related Pages
HTML reference: HTML <input> min attribute
Input DatetimeLocal Object