FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

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

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