Open In App

HTML | DOM Input Time name Property

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

The DOM Input Time name Property in HTML DOM is used to set or return the value of name attribute of a Time field. The name attribute is required for each input 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 Time name property.
timeObject.name
  • It is used to set the Input Time name property.
timeObject.name = name

Property Values: It contains a single value name which defines the name of the Time field. 

Return Value: It returns a string value which represents the name of the Time field. 

Example-1: This example illustrates how to return Input Time name property. 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        DOM Input Time name Property
    </title>
</head>
 
<body>
    <center>
        <h1 style="color:green;">
                GeeksForGeeks
            </h1>
 
        <h2>
          DOM Input Time name Property
      </h2>
 
        <label for="uname"
               style="color:green">
            <b>Enter time</b>
        </label>
 
        <input type="time"
               id="gfg"
               name="Geek_time"
               placeholder="Enter time"
               step="5"
               readonly>
 
        <br>
        <br>
 
        <button type="button"
                onclick="geeks()">
            Click
        </button>
 
        <p id="GFG"
           style="font-size:24px;
                  color:green'">
      </p>
 
        <script>
            function geeks() {
               
                var link =
                    document.getElementById(
                      "gfg").name;
               
                document.getElementById(
                  "GFG").innerHTML = link;
            }
        </script>
    </center>
</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>
        DOM Input Time name Property
    </title>
</head>
 
<body>
    <center>
        <h1 style="color:green;">
                GeeksForGeeks
            </h1>
 
        <h2>
          DOM Input Time name Property
      </h2>
 
        <label for="uname"
               style="color:green">
            <b>Enter time</b>
        </label>
 
        <input type="time"
               id="gfg"
               name="Geek_time"
               placeholder="Enter time"
               step="5"
               readonly>
 
        <br>
        <br>
 
        <button type="button"
                onclick="geeks()">
            Click
        </button>
 
        <p id="GFG"
           style="font-size:24px;
                  color:green'">
      </p>
 
        <script>
            function geeks() {
                var link =
                    document.getElementById(
                      "gfg").name = "Hello Geeks";
               
                document.getElementById(
                  "GFG").innerHTML =
                  "The value of the name attribute"+
                  " was changed to " + link;
            }
        </script>
    </center>
</body>
 
</html>


Output: 

Before Clicking On Button:

  

After Clicking On Button:  

Supported Browsers: The browser supported by DOM input Time name property listed below:

  • Google Chrome 20
  • Edge 12
  • Firefox 57
  • Opera 10
  • Safari 14.1


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

Similar Reads