HTML DOM Input Text defaultValue Property Last Updated : 16 Jun, 2023 Summarize Comments Improve Suggest changes Share Like Article Like Report 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 contains the current value after making some changes. This property is useful to find out whether the text field have been changed or not. Syntax: It returns the defaultValue property.textObject.defaultValueIt is used to set the defaultValue property.textObject.defaultValue = value Property Values: It contains single property value value which defines the default value for text field. Return Value: It returns a string value which represent the default value of the text field. Example 1: This example illustrates how to return Input Text defaultValue property. HTML <!DOCTYPE html> <html> <head> <title> HTML DOM Input Text defaultValue Property </title> </head> <body style="text-align:center;"> <h1>GeeksForGeeks</h1> <h2>DOM Input Text defaultValue Property</h2> <form id="myGeeks"> <input type="text" id="text_id" name="geeks" value="GeeksForGeeks"> </form><br> <button onclick="myGeeks()">Click Here!</button> <p id="GFG" style="font-size:20px;"></p> <!-- script to return the defaultValue Property--> <script> function myGeeks() { let txt = document.getElementById("text_id").defaultValue; document.getElementById("GFG").innerHTML = txt; } </script> </body> </html> Output: Example 2: This example illustrates how to set Input Text defaultValue property. HTML <!DOCTYPE html> <html> <head> <title> HTML DOM Input Text defaultValue Property </title> </head> <body style="text-align:center;"> <h1>GeeksForGeeks</h1> <h2>DOM Input Text defaultValue Property</h2> <form id="myGeeks"> <input type="text" id="text_id" name="geeks" value="GeeksForGeeks"> </form><br> <button onclick="myGeeks()"> Click Here! </button> <p id="GFG" style="font-size:20px;"></p> <!-- script to set the defaultValue Property--> <script> function myGeeks() { let txt = document.getElementById("text_id").defaultValue = "HelloGeeks"; document.getElementById("GFG").innerHTML = txt; } </script> </body> </html> Output: Supported Browsers: The browser supported by DOM input Text defaultValue Property are listed below: Google Chrome 1 and aboveEdge 12 and aboveFirefox 1 and aboveOperaSafari 1 and above Comment More infoAdvertise with us Next Article HTML DOM Input Range defaultValue Property M manaschhabra2 Follow Improve Article Tags : Misc Web Technologies HTML Web technologies HTML-DOM HTML-Property +2 More 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 Time defaultValue Property 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 co 2 min read HTML | DOM Input reset defaultValue Property The Input reset defaultvalue Property in HTML DOM is used to set or return the default value of a reset 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 contai 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 Like