Open In App

HTML | DOM Input Radio required Property

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: 



radioObject.required
radioObject.required = true|false

Property Values: 

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. 




<!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. 




<!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:


Article Tags :