THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Input Week min Property

Input Week Object Reference Input Week Object

Example

Get the minimum week and year allowed for a week field:

var x = document.getElementById("myWeek").min;

The result of x will be:

2014-W12
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

Internet Explorer Firefox Opera Google Chrome Safari

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="week"> element is not supported in Internet Explorer or 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:
  • YYYY - year (e.g. 2011)
  • The literal string "-W" indicates "week"
  • WW - week (in the range of 1 to 52 or 53 (depending on the particular year), e.g. 01 for the first week of the year)
Example: 2014-W15

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 Reference Input Week Object