Open In App

HTML | DOM Input Radio type Property

Improve
Improve
Like Article
Like
Save
Share
Report

The DOM Input Radio type Property in HTML DOM is used to return the type of form element of the Radio Button. It always returns the “radio” for an Input Radio Button.

Syntax: 

radioObject.type

Return Values: It returns a string value which represents the type of form element the input radio field is. 

Below program illustrates the Radio type property in HTML DOM:
Example: This example returns the type of form element of the Radio field. 

HTML




<!DOCTYPE html>
<html>
<head>
    <style>
        body {
            text-align: center;
        }
         
        h1 {
            color: green;
        }
    </style>
</head>
<body>
    <h1>
      GeeksforGeeks
    </h1>
    <h2>
      HTML DOM Input Radio type Property
    </h2>
      Radio Button:
    <input type="radio"
           checked=true
           id="radioID"
           value="Geeks_radio"
           name="Geek_radio">
    <br>
    <br>
    <button onclick="GFG()">
        Click!
    </button>
    <p id="GFG"
       style="font-size:25px;
              color:green;">
    </p>
 
    <script>
        function GFG() {
 
            // Return Input Radio type Property
            var x =
                document.getElementById(
                  "radioID").type;
           
            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 type Property are listed below: 

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


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