Open In App

HTML | DOM Input Color autofocus Property

The DOM Input Color autofocus Property in HTML DOM is used to set or return whether the color picker should get automatically get focus or not when the page loads. This Property is used to reflect the HTML autofocus attribute. 

Syntax: 



colorObject.autofocus
colorObject.autofocus = true|false

Property Values: 

Return Values: It returns a Boolean value which represents that the color picker gets focus or not when the page loads.



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




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Input Color autofocus Property
    </title>
</head>
<body style="text-align:center;">
    <h1>
        GeeksForGeeks
    </h1>
    <h2>
        HTML DOM Input Color autofocus Property
    </h2>
    <form id="myGeeks">
        <label>
            Select your favorite color:
        </label>
        <input type="color"
               value="#009900"
               name="Geek_color"
               id="color"
               autofocus>
    </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").autofocus;
 
            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 the Property. 




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Input Color autofocus Property
    </title>
</head>
<body style="text-align:center;">
    <h1>
        GeeksForGeeks
    </h1>
    <h2>
        HTML DOM Input Color autofocus Property
    </h2>
    <form id="myGeeks">
        <label>
          Select your favorite color:
          </label>
        <input type="color"
               value="#009900"
               name="Geek_color"
               id="color"
               autofocus>
    </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").autofocus = false;
           
            document.getElementById(
              "GFG").innerHTML = x;
        }
    </script>
</body>
</html>

Output: 

Before Clicking On Button:

  

After Clicking On Button:

  

Supported Browsers: The browsers supported by DOM input color autofocus property are listed below:


Article Tags :