Input Week type Property
Example
Return which type of form element the week field is:
var x = document.getElementById("myWeek").type;
Try it Yourself »
Definition and Usage
The type property returns which type of form element the week field is.
Note: In the example above, Opera, Chrome and Safari returns "week", while Internet Explorer and Firefox returns "text".
Browser Support
Property | |||||
---|---|---|---|---|---|
type | Yes | 10.0 | Yes | Yes | Yes |
Note: The <input type="week"> element does not show any date field/calendar in Firefox.
Syntax
weekObject.type
Technical Details
Return Value: | A String, representing the type of form element the week field is |
---|
❮ Input Week Object