Input Week value Property
Example
Set the week and year for a week field:
document.getElementById("myWeek").value = "2014-W48";
Try it Yourself »
Description
The value property sets or returns the value of the value attribute of a week field.
The value attribute specifies a week and year for the week field.
Browser Support
| Property | |||||
|---|---|---|---|---|---|
| value | Yes | 10.0 | Yes | Yes | Yes |
Note: The <input type="week"> element does not show any date field/calendar in Firefox.
Syntax
Return the value property:
weekObject.value
Set the value property:
weekObject.value = YYYY
-WWW
Property Values
| Value | Description |
|---|---|
| YYYY-WWW |
Specifies the week and year. Explanation of components:
|
Technical Details
| Return Value: | A String, representing the year and week of the week field |
|---|
More Examples
Example
Get the week and year of a week field:
var x = document.getElementById("myWeek").value;
Try it Yourself »
Related Pages
HTML reference: HTML <input> value attribute
❮ Input Week Object