Input Week type Property
Example
Return which type of form element the week field is:
var x = document.getElementById("myWeek").type;
The result of x could be:
week
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
The type property is supported in all major browsers.
Note: The <input type="week"> element is not supported in Internet Explorer or Firefox.
Syntax
weekObject.type
Technical Details
Return Value: | A String, representing the type of form element the week field is |
---|
Input Week Object