Open In App

HTML | DOM Input Time name Property

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: 



timeObject.name
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. 




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




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


Article Tags :