VOOZH about

URL: https://www.geeksforgeeks.org/html/html-dom-input-text-value-property/

⇱ HTML | DOM Input Text value Property - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

HTML | DOM Input Text value Property

Last Updated : 26 Aug, 2022

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.value
  • It 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. 

Output:
Before Clicking On Button: 

👁 Image

After Clicking On Button: 

👁 Image

Example 2: This example illustrates how to set Input Text value property. 

Output: 
Before Clicking the Button: 

👁 Image

After Clicking the Button: 

👁 Image

Supported Browsers: The browser supported by DOM input Text value property are listed below: 

  • Google Chrome 1 and above
  • Edge 12 and above
  • Firefox 1 and above
  • Opera
  • Safari 1 and above
Comment
Article Tags: