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

Input Radio required Property

Input Radio Object Reference Input Radio Object

Example

Find out if a radio button must be checked before submitting a form:

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

The result of x will be:

true
Try it Yourself »

Definition and Usage

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

This property reflects the HTML required attribute.


Browser Support

Property
value Yes 10.0 Yes Yes Yes

Syntax

Return the required property:

radioObject.required

Set the required property:

radioObject.required=true|false

Property Values

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

Technical Details

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

More Examples

Example

Set a radio button to be a required part of form submission:

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

Related Pages

HTML reference: HTML <input> required attribute


Input Radio Object Reference Input Radio Object