Attention reader! Don’t stop learning now. Get hold of all the important HTML concepts with the Web Design for Beginners | HTML course.
HTML | DOM Input Submit type Property
The DOM Input Submit type Property in HTML DOM is used to return the type of form element of the submit filed. It always returns the submit for an Input submit field.
Syntax:
submitObject.type
Return Values: It returns a string value that represents the type of form element an input submit field is.
Below program illustrates the submit type property in HTML DOM:
Example: This example returns the type of form element of the submit field.
html
<!DOCTYPE html> < html > < head > < title > HTML DOM Input Submit type Property </ title > </ head > < body style = "text-align:center;" > < h1 > GeeksForGeeks </ h1 > < h2 > HTML DOM Input Submit type Property </ h2 > < form id = "myGeeks" > < input type = "submit" id = "Geeks" value = "Submit @ geeksforgeeks" > </ form > < p > click on below button to return the Property </ p > < button onclick = "myGeeks()" > Click Here! </ button > < p id = "GFG" style = "font-size:25px;" ></ p > <!-- Script to return submit value Property --> < script > function myGeeks() { var btn = document.getElementById("Geeks").type; document.getElementById("GFG").innerHTML = btn; } </ script > </ body > </ html > |
Output:
Before Clicking On Button:
After Clicking On Button:
Supported Browsers: The browser supported by DOM input submit type Property are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Safari