THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Input Week type Property

Input Week Object Reference Input Week Object

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

Internet Explorer Firefox Opera Google Chrome Safari

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