Input Week min Property
Example
Get the minimum week and year allowed for a week field:
var x = document.getElementById("myWeek").min;
Try it Yourself »
Definition and Usage
The min property sets or returns the value of the min attribute of a week field.
The min attribute specifies the minimum value (week and year) for a week field.
Tip: The min attribute is often used 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="week"> element does not show any date field/calendar in Firefox.
Syntax
Return the min property:
weekObject.min
Set the min property:
weekObject.min = YYYY-WWW
Property Values
Value | Description |
---|---|
YYYY-WWW |
Specifies the minimum week and year allowed. Explanation of components:
|
Technical Details
Return Value: | A String, representing the minimum week and year allowed |
---|
More Examples
Example
Change the minimum week and year allowed:
document.getElementById("myWeek").min = "2014-W16";
Try it Yourself »
Related Pages
HTML reference: HTML <input> min attribute
❮ Input Week Object