Open In App

HTML DOM Input Color name Property

Improve
Improve
Like Article
Like
Save
Share
Report

The DOM Input Color name Property in HTML DOM is used to set or return the value of the name attribute. The name attribute is required for each input color field. If the name attribute is not specified in an input field then the data of that field would not be sent at all. 

Syntax: 

  • It returns the Input Color name property.
colorObject.name
  • It is used to set the Input Color name property.
colorObject.name = name

Property Values: It contains a single property value i.e. name which is used to specify the name of the Color field. 

Return value: It returns a string value that represents the name of the input Color field. 

Example 1: This example returns the Input color name property. 

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Input Color name Property
    </title>
</head>
 
<body style="text-align:center;">
    <h1>
        GeeksForGeeks
    </h1>
    <h2>
        HTML DOM Input Color name Property
    </h2>
    <p>
        Select your favorite color:
        <input type="color"
               value="#009900"
               name="Geek_color"
               id="color">
    </p>
    <button onclick="myGeeks()">
        Click Here!
    </button>
    <p id="GFG" style="color:green;
                       font-size:24px;">
    </p>
 
    <!-- script to return
    the name of input color field-->
    <script>
        function myGeeks() {
            let x =
                document.getElementById(
                    "color").name;
 
            document.getElementById(
                "GFG").innerHTML = x;
        }
    </script>
</body>
 
</html>


Output: 

 

Example 2: This Example illustrates how to set the name Property. 

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Input Color name Property
    </title>
</head>
 
<body style="text-align:center;">
    <h1>
        GeeksForGeeks
    </h1>
    <h2>
        HTML DOM Input Color name Property
    </h2>
    <p>
        Select your favorite color:
        <input type="color"
               value="#009900"
               name="Geek_color"
               id="color">
    </p>
    <button onclick="myGeeks()">
        Click Here!
    </button>
    <p id="GFG" style="color:green;
            font-size:24px;">
    </p>
 
    <!-- script to change the name of input color field -->
    <script>
        function myGeeks() {
            let x =
                document.getElementById(
                    "color").name = "Hello Geeks";
 
            document.getElementById(
                "GFG").innerHTML =
                "The value of the name attribute" +
                " was changed to " + x;
        }
    </script>
</body>
 
</html>


Output: 

 

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

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


Last Updated : 16 Jun, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads