Open In App

HTML | DOM Input Range step Property

Improve
Improve
Like Article
Like
Save
Share
Report

The DOM Input Range step Property in HTML DOM is used to set or return the value of the step attribute of the slider control. The step attribute is used to specify the size of space between two values. This attribute can be used with both min and max to create a range of values. 

Syntax:

  • It returns the Input Range step Property:
rangeObject.step
  • It is used to set Input Range step Property:
rangeObject.step = number

Property Values: It contains single value number which specify the size of steps. The default value of steps is 1. 

Return Values: It return a number which represents the increment between values. 

Example-1: 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        DOM Input Range step Property
    </title>
</head>
 
<body style="text-align:center;">
 
    <h1 style="color:green;">
            GeeksForGeeks
        </h1>
 
    <h2>
      DOM Input Range step Property
  </h2>
 
    <input type="range"
           id="myRange"
           step="15">
 
    <br>
    <br>
 
    <button onclick="myGeeks()">
        Click Here!
    </button>
 
    <p id="GFG"
       style="font-size:23px;
              color:green;">
  </p>
 
    <script>
        function myGeeks() {
 
            // Accessing input value
            var x =
                document.getElementById(
                  "myRange").step;
           
            document.getElementById(
              "GFG").innerHTML = x;
        }
    </script>
 
</body>
 
</html>


Output: 

Before Click on button:

  

After Click on button: 

 

Example-2: 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        DOM Input Range step Property
    </title>
</head>
 
<body style="text-align:center;">
 
    <h1 style="color:green;">
            GeeksForGeeks
        </h1>
 
    <h2>
      DOM Input Range step Property
  </h2>
 
    <input type="range"
           id="myRange"
           step="15">
 
    <br>
    <br>
 
    <button onclick="myGeeks()">
        Click Here!
    </button>
 
    <p id="GFG"
       style="font-size:23px;
              color:green;">
  </p>
 
    <script>
        function myGeeks() {
 
            // Accessing input value 
            var x =
                document.getElementById(
                  "myRange").step = "25";
 
            document.getElementById(
              "GFG").innerHTML =
                "The value of the step attribute"+
              " was changed to " + x;
        }
    </script>
 
</body>
 
</html>


Output: 

Before Click on button:

  

After Click on button:

  

Supported Browsers: The browser supported by DOM Input Range step Property are listed below:

  • Google Chrome 4 and above
  • Edge 12 and above
  • Firefox 23 and above
  • Opera 11 and above
  • Safari 3.1 and above


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