Open In App

HTML | DOM Input Radio required Property

Improve
Improve
Like Article
Like
Save
Share
Report

The DOM Input Radio required Property in HTML DOM is used to set or return whether Input Radio Field should be checked or not when submitting the form. This property is used to reflect the HTML required attribute. 

Syntax: 

  • It returns the Input Radio required property.
radioObject.required
  • It is used to set the Input Radio required property.
radioObject.required = true|false

Property Values: 

  • true: It specifies that the Radio field must be checked out before submitting the form.
  • false: It is the default value. It specifies that the Radio field must not be checked out before submitting the form.

Return Value: It returns a Boolean value which represents that the Radio Field must be checked or not before submitting the form.

Example 1: This example illustrates how to return Input Radio required property. 

HTML




<!DOCTYPE html>
<html>
<head>
    <style>
        body {
            text-align: center;
        }
         
        h1 {
            color: green;
        }
    </style>
</head>
<body>
    <h1>
      GeeksforGeeks
    </h1>
    <h2>
      HTML DOM Input Radio required Property
    </h2>
    Radio Button:
    <input type="radio"
           checked=true
           id="radioID"
           value="Geeks_radio"
           required>
    <br>
    <br>
    <button onclick="GFG()">
        Click!
    </button>
    <p id="GFG"
       style="font-size:25px;
              color:green;">
    </p>
    <script>
        function GFG() {
 
            // Returning Input radio required property
            var x =
                document.getElementById(
                  "radioID").required;
           
            document.getElementById(
              "GFG").innerHTML = x;
        }
    </script>
</body>
</html>


Output: 

Before Clicking On Button: 

 

After Clicking On Button: 

 

Example 2: This Example illustrates how to set the Input Radio required Property. 

HTML




<!DOCTYPE html>
<html>
<head>
    <style>
        body {
            text-align: center;
        }
         
        h1 {
            color: green;
        }
    </style>
</head>
<body>
    <h1>
      GeeksforGeeks
    </h1>
    <h2>
      HTML DOM Input Radio required Property
    </h2>
    Radio Button:
    <input type="radio"
           checked=true
           id="radioID"
           value="Geeks_radio"
           required>
    <br>
    <br>
    <button onclick="GFG()">
        Click!
    </button>
    <p id="GFG"
       style="font-size:25px;
              color:green;">
    </p>
    <script>
        function GFG() {
 
            // Setting Input radio required Property
            var x =
                document.getElementById(
                  "radioID").required = "false";
           
            document.getElementById(
              "GFG").innerHTML = x;
        }
    </script>
</body>
</html>


Output: 

Before Clicking On Button: 

 

After Clicking On Button:

  

Supported Browsers: The browser supported by DOM input Radio required Property are listed below:

  • Google Chrome
  • Edge 12+
  • Firefox
  • Opera
  • Safari


Last Updated : 26 Aug, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads