THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Input Checkbox required Property

Input Checkbox Object Reference Input Checkbox Object

Example

Find out if a checkbox must be checked before submitting a form:

var x = document.getElementById("myCheck").required;

The result of x will be:

true
Try it yourself »

Definition and Usage

The required property sets or returns whether a checkbox must be checked before submitting a form.

This property reflects the HTML required attribute.


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The required property is supported in all major browsers, except Safari.

Note: The required property is not supported in Internet Explorer 9 and earlier versions.


Syntax

Return the required property:

checkboxObject.required

Set the required property:

checkboxObject.required=true|false

Property Values

Value Description
true|false Specifies whether a checkbox should be checked before submitting a form
  • true - The checkbox must be checked before submitting a form
  • false - Default. The checkbox is not a required part of form submission

Technical Details

Return Value: A Boolean, returns true if the checkbox must be checked before submitting a form, otherwise it returns false

More Examples

Example

Set a checkbox to be a required part of form submission:

document.getElementById("myCheck").required = true;
Try it yourself »

Related Pages

HTML reference: HTML <input> required attribute


Input Checkbox Object Reference Input Checkbox Object