Open In App

HTML | DOM Input Color autocomplete Property

Last Updated : 20 Sep, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The Input color autocomplete Property in HTML DOM is used to set or return the value of the autocomplete attribute of an Input color field. The autocomplete attribute is used to specify whether the autocomplete attribute has “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 color autocomplete property.
colorObject.autocomplete
  • It is used to set the Input color autocomplete property.
colorObject.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 color 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 color autocomplete property. 

HTML




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Input Color autocomplete Property
    </title>
</head>
<body style="text-align:center;">
    <h1>
        GeeksForGeeks
    </h1>
    <h2>
        HTML DOM Input Color autocomplete Property
    </h2>
    <form id="myGeeks">
        <label>
            Select your favorite color:
        </label>
        <input type="color" value="#009900"
                name="Geek_color" id="color"
                autocomplete="on">
    </form>
    <button onclick="myGeeks()">
        Click Here!
    </button>
    <p id="GFG" style=
            "color:green;font-size:24px;">
    </p>
    <script>
        function myGeeks() {
            var x =
            document.getElementById("color").autocomplete;
 
            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 Input Color autocomplete property. 

HTML




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Input Color autocomplete Property
    </title>
</head>
<body style="text-align:center;">
    <h1>
        GeeksForGeeks
    </h1>
    <h2>
        HTML DOM Input Color autocomplete Property
    </h2>
    <form id="myGeeks">
        <label>
            Select your favorite color:
        </label>
        <input type="color" value="#009900"
            name="Geek_color" id="color"
            autocomplete="on">
    </form>
    <button onclick="myGeeks()">
        Click Here!
    </button>
    <p id="GFG" style=
        "color:green;font-size:24px;">
    </p>
    <script>
        function myGeeks() {
            var x =
            document.getElementById("color").autocomplete
                    = "off";
 
            document.getElementById("GFG").innerHTML
                    = "The value of the autocomplete "
                    + "attribute 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 Color autocomplete property are listed below:

  • Google Chrome 20 and above
  • Edge 14 and above


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

Similar Reads