Open In App

HTML | DOM Input Range autofocus Property

Last Updated : 30 Aug, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The DOM Input Range autofocus Property in HTML DOM is used to set or return whether the Input range Field should get focus or not when the page loads. It reflects the HTML autofocus attribute.
 

Syntax:  

  • It returns the autofocus property. 
rangeObject.autofocus
  • It is used to set the autofocus property. 
rangeObject.autofocus = "true|false"

Property Values:  

  • true: It sets the focus of range field.
  • false: It has the default value. It defines the range field does not get focus.

Return Value: It returns a boolean value which represents the range or slider control field gets autofocus or not.
Example-1: This example returns the Input range autofocus property.  

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Input range autofocus 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 autofocus property
  </h2>
    <form id="geeks">
        <input name=G
               eek_range
               type="range"
               id="Geek_Range"
               value="90"
               autofocus>
    </form>
    <br>
    <br>
    <button onclick="myGeeks()">
        Click Here
    </button>
    <p id="Geek_p">
  </p>
 
 
    <script>
        function myGeeks() {
           
            //Return autofoucs property.
            var x =
            document.getElementById(
              "Geek_Range").autofocus;
           
            document.getElementById(
              "Geek_p").innerHTML = x;
        }
    </script>
</body>
 
</html>


Output: 
Before Clicking On Button: 
 

After Clicking On Button: 
 

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

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Input range autofocus 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 autofocus property
  </h2>
    <form id="geeks">
        <input name=G
               eek_range
               type="range"
               id="Geek_Range"
               value="90"
               autofocus>
    </form>
    <br>
    <br>
    <button onclick="myGeeks()">
        Click Here
    </button>
    <p id="Geek_p"></p>
 
 
    <script>
        function myGeeks() {
           
            // Set autofocus property.
            var x =
             document.getElementById(
               "Geek_Range").autofocus = false;
           
            document.getElementById(
              "Geek_p").innerHTML = x;
        }
    </script>
</body>
 
</html>


Output :
Before Clicking On Button : 
 

After Clicking On Button: 
 

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


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads