Open In App

HTML | DOM Input Color autofocus Property

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

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: 

  • It return the autofocus property.
colorObject.autofocus
  • It is used to set the autofocus property.
colorObject.autofocus = true|false

Property Values: 

  • true: The color picker gets autofocus.
  • false: It has a default value. The color picker does not get focus.

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. 

HTML




<!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. 

HTML




<!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:

  • Google Chrome 20
  • Edge 14
  • Firefox 29
  • Opera 12
  • Safari 12.1


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

Similar Reads