HTML | DOM Input Text value Property Last Updated : 26 Aug, 2022 Comments Improve Suggest changes Like Article Like Report The Input Text value property in HTML DOM is used to set or return the value of a value attribute of the input field. The value attribute specifies the initial value of the input Text Field. It contains the default value or the user types. Syntax: It returns the Input Text value property. textObject.valueIt is used to set the Input Text value property. textObject.value = text Property Value: It contains single value text which defines the value of the input text field. Return Value: It returns the string value which represent the value of the Text Field. Example 1: This example illustrates how to return Input Text value property. HTML <!DOCTYPE html> <html> <head> <title> HTML DOM Input Text value Property </title> </head> <body style="text-align:center;"> <h1>GeeksForGeeks</h1> <h2>DOM Input Text value Property</h2> <input type="text" id="text_id" value="Hello Geeks!"> <button onclick="myGeeks()">Click Here!</button> <p id="GFG"></p> <!-- Script to return the Input Text value Property--> <script> function myGeeks() { var txt = document.getElementById("text_id").value; document.getElementById("GFG").innerHTML = txt; } </script> </body> </html> Output:Before Clicking On Button: After Clicking On Button: Example 2: This example illustrates how to set Input Text value property. HTML <!DOCTYPE html> <html> <head> <title> HTML DOM Input Text value Property </title> </head> <body style="text-align:center;"> <h1>GeeksForGeeks</h1> <h2>DOM Input Text value Property</h2> <input type="text" id="text_id" value="Hello Geeks!"> <button onclick="myGeeks()">Click Here!</button> <p id="GFG" style="font-size:20px;"></p> <!-- Script to set Input Text value Property--> <script> function myGeeks() { var txt = document.getElementById("text_id").value = "GeeksForGeeks"; document.getElementById("GFG").innerHTML = "The value of the value attribute " + "was changed to : " + txt; } </script> </body> </html> Output: Before Clicking the Button: After Clicking the Button: Supported Browsers: The browser supported by DOM input Text value 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 Text value Property M manaschhabra2 Follow Improve Article Tags : Misc Web Technologies HTML HTML-DOM Practice Tags : Misc Similar Reads HTML DOM Input Tel value Property The Input Tel value Property in HTML DOM is used to set or return the value of Tel attribute in the input Tel field. The value attribute specifies the initial value of the input Tel field. It contains the default value or the user types. Syntax: It returns the value property.telObject.valueIt is use 1 min read HTML DOM Input Text type Property The Input Text type Property in HTML DOM is used to return the type of form element of the text field. It always returns the text for an Input text field. Syntax:Â textObject.typeReturn Value: It returns a string value that represents the type of form element the input text field is. Below program i 1 min read HTML | DOM Input Range value Property The DOM Input Range value Property in HTML DOM is used to set or return the value of the slider control or input range field. The attribute specifies the default value or the user type value. Syntax: It returns the value property.rangeObject.valueIt is used to set the value property.rangeObject.valu 2 min read HTML | DOM Input URL value Property The DOM Input URL value Property in HTML DOM is used to set or return the value of the input URL field. The attribute specifies the default value or the user type value. Syntax: It returns the value property.urlObject.valueIt is used to set the value property.urlObject.value = url Property Values: I 2 min read HTML | DOM Input Search value Property The DOM Input Search value Property in HTML DOM is used to set or return the value of a value attribute of the search field. The value attribute specifies the initial value of the input search Field. It contains the default value or user types. Syntax: It returns the value property.searchObject.valu 2 min read Like