HTML | DOM Input Time form Property Last Updated : 13 May, 2021 Comments Improve Suggest changes Like Article Like 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 ChromeInternet Explorer 10.0 +FirefoxOperaSafari Comment More infoAdvertise with us Next Article HTML | DOM Input Time form Property M manaschhabra2 Follow Improve Article Tags : Misc Web Technologies HTML HTML-DOM Practice Tags : Misc Similar Reads HTML | DOM Input Week form Property The Input Week form property is used for returning a reference to the form that contains the Week field. It is a read-only property. Syntax: weekObject.form Return Value: It returns a form object on success, else if the week field is not in the form, it returns NULL. Below program illustrates the We 1 min read HTML | DOM Input Time min Property The DOM Input Time min Property is used to set or return the value of the min attribute of a number field. The min attribute defines the minimum time for an input Time field. Syntax: It returns the min property.timeObject.minIt is use to set the min property.timeObject.min = hh:mm:ss.ms Property val 2 min read HTML | DOM Input Time max Property The DOM Input Time max Property in HTML DOM is used to set or return the value of the max attribute for the Time field. The max attribute specify the maximum time value allowed for the Time field. Syntax: It returns the max property.timeObject.maxIt is use to set the max property.timeObject.max = hh 2 min read 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: It returns th 2 min read HTML DOM Input Time list Property The input Time list property in HTML DOM is used to return a reference to the list element that contains an input Time field. Syntax: timeObject.list.idReturn value: It returns a string value that represents the value of the id attribute of the datalist element. Example: Below HTML code is used to r 1 min read Like