Input Month required Property
Example
Find out if a month field must be filled out before submitting a form:
	var x = document.getElementById("myMonth").required;
The result of x will be:
true
Try it Yourself »
Definition and Usage
The required property sets or returns whether a month field must be filled out before submitting a form.
This property reflects the HTML required attribute.
Browser Support
 
 
 
 

The required property is supported in all major browsers, except Internet Explorer 9 and earlier versions, and Safari.
Note: The <input type="month"> element is not supported in Internet Explorer or Firefox.
Syntax
Return the required property:
	monthObject.required
Set the required property:
	monthObject.required=true|false
Property Values
| Value | Description | 
|---|---|
| true|false | Specifies whether a month 
		field should be a required part of form submission. 
 | 
Technical Details
| Return Value: | A Boolean, returns true if the month field is a required part of form submission, otherwise it returns false | 
|---|
More Examples
Example
Set a month field to be a required part of form submission:
	document.getElementById("myMonth").required = true;
Try it Yourself »
Related Pages
HTML reference: HTML <input> required attribute
 Input Month Object
 Input Month Object

