Open In App

HTML | DOM Input Range autocomplete Property

Improve
Improve
Like Article
Like
Save
Share
Report

The Input Range autocomplete Property in HTML DOM is used to set or return the value of the autocomplete attribute of an Input range field. The autocomplete attribute is used to specify whether the autocomplete attribute has an “on” or “off” value. When the autocomplete attribute is set to on, the browser will automatically complete the values based on which the user entered before.

Syntax: 

  • It returns the Input range autocomplete property.
rangeObject.autocomplete
  • It is used to set the Input range autocomplete property.
rangeObject.autocomplete = "on | off" 

Property Values: It contains two values which are listed below:

  • on: It is the default value. It automatically completes the values.
  • off: It defines that the user should fill the values of the range input field. It does not automatically complete the values.

Return Value: It returns a string value which represents the state of autocomplete. 

Example 1: This example illustrates how to return Input Range autocomplete property. 

HTML




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

HTML




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


Output:

  • Before Clicking On Button:

 

  • After Clicking On Button: 

Supported Browsers: The browsers supported by HTML DOM Input Range autocomplete Property are listed below:

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


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