Open In App

HTML | DOM Input Range value Property

The DOM Input Range value Property in HTML DOM is used to set or return the value of the slider control or input range field. The attribute specifies the default value or the user type value. 

Syntax: 



rangeObject.value
rangeObject.value = number

Property Values: It contains a value i.e number which specify the value of the slider control. It’s default value is 50. 

Return Value: It returns a numeric value which represents the number that represents the value of the slider control. 



Example-1: This Example illustrates how to return the value Property. 




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Input range value Property
    </title>
</head>
<style>
    #Geek_p {
        font-size: 30px;
        color: green;
    }
</style>
 
<body style="text-align:center;">
 
    <h1 style="color:green;">
            GeeksForGeeks
        </h1>
 
    <h2>DOM Input Range value property
  </h2>
    <input name=G
           eek_range type="range"
           id="Geek_Range"
           value="90">
    <br>
    <br>
    <button onclick="myGeeks()">
        Click Here
    </button>
    <p id="Geek_p"></p>
    <script>
        function myGeeks() {
            var x =
            document.getElementById(
              "Geek_Range").value;
           
            document.getElementById(
              "Geek_p").innerHTML = x;
        }
    </script>
</body>
 
</html>

Output: 

Before Clicking On Button :

  

After Clicking On Button:

  

Example-2: This Example illustrates how to set the value Property. 




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Input range value Property
    </title>
</head>
<style>
    #Geek_p {
        font-size: 30px;
        color: green;
    }
</style>
 
<body style="text-align:center;">
 
    <h1 style="color:green;">
            GeeksForGeeks
        </h1>
 
    <h2>DOM Input Range value property </h2>
    <input name=G
           eek_range type="range"
           id="Geek_Range"
           value="90">
    <br>
    <br>
    <button onclick="myGeeks()">
        Click Here
    </button>
    <p id="Geek_p"></p>
    <script>
        function myGeeks() {
           
            // Set range value.
            var x =
            document.getElementById(
              "Geek_Range").value = 60;
           
            document.getElementById(
              "Geek_p").innerHTML =
              "The value of the range attribute was changed to "
            + x;
        }
    </script>
</body>
 
</html>

Output : 

Before Clicking On Button:

  

After Clicking On Button:  

Supported Browsers: The browser supported by DOM input range value Property are listed below:


Article Tags :