HTML | DOM Input URL defaultValue Property Last Updated : 16 Oct, 2020 Comments Improve Suggest changes Like Article Like Report 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 contains the current value after making some changes. This property is useful to find out whether the URL field has been changed or not. Syntax: It returns the defaultValue property. urlObject.defaultValue It is used to set the defaultValue property. urlObject.defaultValue = value Property Values: It contains a single property value which defines the default value for URL field. Return Value: It returns a string value which represents the default value of the URL field. Example-1: This example illustrates how to return Input URL defaultValue property. html <!DOCTYPE html> <html> <head> <title> DOM Input URL defaultValue Property </title> </head> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> DOM Input URL defaultValue Property </h2> <label for="uname" style="color:green"> </label> <form id="geeks"> <input type="url" id="gfg" placeholder="Enter URL" size="20" value="GeeksForGeeks" pattern="https?://.+" title="Include http://" maxlength="20"> </form> <br> <br> <button type="button" onclick="geeks()"> Click </button> <p id="GFG" style="color:green;font-size:25px;"> </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 that illustrates how to set the Property. html <!DOCTYPE html> <html> <head> <title> DOM Input URL defaultValue Property </title> </head> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> DOM Input URL defaultValue Property </h2> <label for="uname" style="color:green"> </label> <form id="geeks"> <input type="url" id="gfg" placeholder="Enter URL" size="20" value="GeeksForGeeks" pattern="https?://.+" title="Include http://" maxlength="20"> </form> <br> <br> <button type="button" onclick="geeks()"> Click </button> <p id="GFG" style="color:green; font-size:25px;"> </p> <script> function geeks() { var link = document.getElementById( "gfg").defaultValue = "finecomb"; 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 browsers supported by DOM input URL defaultValue property are listed below: Google Chrome Internet Explorer 10.0 + Firefox Opera Safari Comment More infoAdvertise with us Next Article HTML | DOM Input URL 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 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 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 Radio defaultvalue Property The Input Radio defaultValue Property in HTML DOM is used to set or return the default value of a Radio 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 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 HTML | DOM Input Search defaultValue Property The DOM Input Search defaultValue Property in HTML DOM is used to set or return the default value of the search 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 valu 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 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 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 Date defaultValue Property The Input Date defaultValue Property in HTML DOM is used to set or return the default value of a date 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 2 min read Like