Open In App

HTML | DOM Input Radio value Property

Improve
Improve
Like Article
Like
Save
Share
Report

The DOM Input Radio value Property in HTML DOM is used to set or return the value of the input radio field. The attribute specifies the default value or the user type value. 

Syntax: 

It returns the value property.

radioObject.value

It is used to set the value property.

radioObject.value = text

Property Values: It contains a value i.e that is associated with the Input radio field. 

Return Value: It returns a string value which represents the value of the value attribute of a radio Button. 

Example 1: This Example illustrates how to return the value 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 value Property
    </h2>
    Radio Button:
    <input type="radio"
        checked=true
        id="radioID"
        value="Geeks_radio">
    <br>
    <br>
    <button onclick="GFG()">
        Click!
    </button>
    <p id="GFG"
    style="font-size:25px;
            color:green;">
    </p>
 
 
    <script>
        function GFG() {
 
           // Return Input Radio value Property
            var x =
                document.getElementById(
                "radioID").value;
             
            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 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 value Property
    </h2>
    Radio Button:
    <input type="radio"
        checked=true
        id="radioID"
        value="Geeks_radio">
    <br>
    <br>
    <button onclick="GFG()">
        Click!
    </button>
    <p id="GFG"
    style="font-size:25px;
            color:green;">
    </p>
 
 
    <script>
        function GFG() {
 
            // Setting  Input Radio value Property
            var x =
                document.getElementById(
                "radioID").value = "Hellogeeks";
             
            document.getElementById(
            "GFG").innerHTML =
            "The value was changed to " + x;
        }
    </script>
</body>
</html>


Output: 

Before Clicking On Button:

  

After Clicking On Button:

  

Supported Browsers: The browser supported by DOM input Radio value 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