Open In App

HTML | DOM Input Time form Property

Improve
Improve
Like Article
Like
Save
Share
Report

The DOM Input Time form Property in HTML DOM is used for returning the reference to the form containing the time field. It is read-only Property that returns a form object on success. 
Syntax: 
 

timeObject.form 

Return Values: It returns a string value which specify the reference of the form containing the Input Time field

Below Program illustrates the use of Input Time form Property.
Example-1: This Example illustrates how to return the Property. 
 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        DOM Input Time form Property
    </title>
</head>
 
<body>
    <center>
        <h1 style="color:green;">
                GeeksForGeeks
            </h1>
 
        <h2>
          DOM Input Time form Property
      </h2>
 
        <label for="uname"
               style="color:green">
            <b>Enter time</b>
        </label>
        <form id="myGeeks">
            <input type="time"
                   id="gfg"
                   name="Geek_time"
                   placeholder="Enter time"
                   step="5"
                   min="16:00"
                   max="22:00">
        </form>
        <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").form.id;
               
                document.getElementById(
                  "GFG").innerHTML = link;
            }
        </script>
    </center>
</body>
 
</html>


Output: 
Before Clicking On Button: 
 

After Clicking On Button: 
 

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

  • Google Chrome
  • Internet Explorer 10.0 +
  • Firefox
  • Opera
  • Safari

 



Last Updated : 13 May, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads