HTML DOM Input Week required Property
THE WORLD'S LARGEST WEB DEVELOPER SITE

Input Week required Property

❮ Input Week Object

Example

Find out if a week field must be filled out before submitting a form:

var x = document.getElementById("myWeek").required;
Try it Yourself »

Definition and Usage

The required property sets or returns whether a week field must be filled out before submitting a form.

This property reflects the HTML required attribute.


Browser Support

Property
required Yes 10.0 Yes Yes Yes

Note: The <input type="week"> element does not show any date field/calendar in Firefox.


Syntax

Return the required property:

weekObject.required

Set the required property:

weekObject.required = true|false

Property Values

Value Description
true|false Specifies whether a week field should be a required part of form submission.
  • true - The week field is a required part of form submission
  • false - Default. The week field is not a required part of form submission

Technical Details

Return Value: A Boolean, returns true if the week field is a required part of form submission, otherwise it returns false

More Examples

Example

Set a week field to be a required part of form submission:

document.getElementById("myWeek").required = true;
Try it Yourself »

Related Pages

HTML reference: HTML <input> required attribute


❮ Input Week Object