HTML | DOM Input Text form Property
The DOM Input Text form Property in HTML DOM is used to return the reference of form containing the input Text field. It is a read-only property that returns the form object on success.
Syntax:
textObject.form
Example: This example illustrates the Input text form property.
<!DOCTYPE html> < html > < head > < title > HTML DOM Input Text form Property </ title > </ head > < body style = "text-align:center;" > < h1 >GeeksForGeeks</ h1 > < h2 >DOM Input Text form Property</ h2 > < form id = "myGeeks" > < input type = "text" id = "text_id" name = "geeks" maxlength = "60" > </ form > < br > < button onclick = "myGeeks()" >Click Here!</ button > < p id = "GFG" style = "font-size:20px;" ></ p > <!-- script to set the form Property--> < script > function myGeeks() { var txt = document.getElementById("text_id").form.id; document.getElementById("GFG").innerHTML = txt; } </ script > </ body > </ html > |
chevron_right
filter_none
Output:
Before clicking on the button:
After clicking on the button:
Supported Browsers: The browser supported by DOM input Text form Property are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Safari