HTML | DOM Input Time defaultValue Property Last Updated : 06 Jun, 2021 Summarize Comments Improve Suggest changes Share Like Article Like Report The DOM Input Time defaultValue Property in HTML DOM is used to set or return the default value of the Time Field. This property is used to reflect the HTML value attribute. The main difference between the default value and value is that the default value indicates the default value and the value contains the current value after making some changes. This property is useful to find out whether the Time field has been changed or not.Syntax: It returns the defaultValue property. timeObject.defaultValueIt is used to set the defaultValue property. timeObject.defaultValue = value Property Values: It contains single property value value which defines the default value for Time field.Return Value: It returns a string value which represent the default value of the Time field.Example-1: This example illustrates how to return Input Time defaultValue property. html <!DOCTYPE html> <html> <head> <title> DOM Input Time defaultValue Property </title> </head> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> DOM Input Time defaultValue Property </h2> <label for="uname" style="color:green"> <b>Enter time</b> </label> <input type="time" id="gfg" name="Geek_time" value="18:00" placeholder="Enter time" step="5" min="16:00" max="22:00" disabled> <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").defaultValue; 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 defaultValue Property </title> </head> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> DOM Input Time defaultValue Property </h2> <label for="uname" style="color:green"> <b>Enter time</b> </label> <input type="time" id="gfg" name="Geek_time" value="18:00" placeholder="Enter time" step="5" min="16:00" max="22:00" disabled> <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").defaultValue = "14:00"; document.getElementById( "GFG").innerHTML = "The defaultvalue 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 defaultValue property listed below: Google ChromeInternet Explorer 10.0 +FirefoxOperaSafari Comment More infoAdvertise with us Next Article HTML DOM Input Tel defaultValue Property M manaschhabra2 Follow Improve Article Tags : Misc Web Technologies HTML HTML-DOM Practice Tags : Misc Similar Reads HTML DOM Input Tel defaultValue Property The Input Tel defaultValue property in HTML DOM is used to set or return the default value of the input tel field. This property is used to reflect the HTML value attribute. The main difference between the default value and value is that the default value indicates the default value and the value co 2 min read HTML DOM Input Text defaultValue Property The Input Text defaultValue Property in HTML DOM is used to set or return the default value of the Text Field. This property is used to reflect the HTML value attribute. The main difference between the default value and value is that the default value indicate the default value and the value contain 2 min read HTML | DOM Input Week defaultValue Property The DOM Input Week defaultValue property in HTML DOM is used to set or return the default value of a week field. It is the value specified in the value attribute. Syntax: It returns the defaultValue property.weekObject.defaultValueIt is used to set the defaultValue property.weekObject.defaultValue = 2 min read HTML DOM Input Range defaultValue Property The Input Range defaultValue Property in HTML DOM is used to set or return the default value of the slider control. This property is used to reflect the HTML value attribute. The main difference between the default value and value is that the default value indicates the default value and the value c 2 min read HTML | DOM Input URL defaultValue Property The DOM Input URL defaultValue Property in HTML DOM is used to set or return the default value of the URL Field. This property is used to reflect the HTML value attribute. The main difference between the default value and value is that the default value indicates the default value and the value cont 2 min read HTML | DOM Input Submit defaultvalue Property The Input Submit defaultValue Property in HTML DOM is used to set or return the default value of a submit field. This property is used to reflect the HTML value attribute. The main difference between the default value and value is that the default value indicates the default value and the value cont 2 min read Like