HTML DOM Input Submit name Property Last Updated : 19 Jun, 2023 Summarize Comments Improve Suggest changes Share Like Article Like Report The Input Submit name Property in HTML DOM is used to set or return the value of name attribute of a submit field. The name attribute is required for each input field. If the name attribute is not specified in an input field then the data of that field would not be sent at all. Syntax: It returns the Input Submit name property.submitObject.nameIt is used to set the Input Submit name property.submitObject.name = name Property Values: It contains single value name which defines the name of the submit field. Return Value: It returns a string value that represents the name of the submit field. Example 1: This example illustrates how to return the Input submit name property. html <!DOCTYPE html> <html> <head> <title> HTML DOM Input Submit name Property </title> </head> <body style="text-align:center;"> <h1> GeeksForGeeks </h1> <h2> HTML DOM Input Submit name Property </h2> <form id="myGeeks"> <input type="submit" id="Geeks" name="myGeeks" 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 name Property --> <script> function myGeeks() { let btn = document.getElementById("Geeks").name; document.getElementById("GFG").innerHTML = btn; } </script> </body> </html> Output: Example 2: This example illustrates how to set Input Submit name Property. html <!DOCTYPE html> <html> <head> <title> HTML DOM Input Submit name Property </title> </head> <body style="text-align:center;"> <h1> GeeksForGeeks </h1> <h2> HTML DOM Input Submit name Property </h2> <form id="myGeeks"> <input type="submit" id="Geeks" name="myGeeks" value="Submit @ geeksforgeeks"> </form> <p> click on below button to set the Property </p> <button onclick="myGeeks()"> Click Here! </button> <p id="GFG" style="font-size:25px;"></p> <!-- Script to set submit name Property --> <script> function myGeeks() { let btn = document.getElementById("Geeks").name = "mySubmit"; document.getElementById("GFG").innerHTML = "The value of the name attribute was" + " changed to " + btn; } </script> </body> </html> Output: Supported Browsers: The browser supported by DOM Input Submit name 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 Submit type Property M manaschhabra2 Follow Improve Article Tags : Misc Web Technologies HTML Web technologies HTML-DOM HTML-Property +2 More Practice Tags : Misc Similar Reads HTML | DOM Input URL name Property The DOM Input URL name Property in HTML DOM is used to set or return the value of name attribute of a URL field. The name attribute is required for each input field. If the name attribute is not specified in an input field then the data of that field would not be sent at all. Syntax: It returns the 2 min read HTML DOM Input tel name Property The input tel name property in HTML DOM is used to set or return the value of the name attribute of an input tel field. The name attribute is required for each input field. If the name attribute is not specified in an input field then the data of that field would not be sent at all. Syntax: It retur 1 min read HTML | DOM Input Time name Property The DOM Input Time name Property in HTML DOM is used to set or return the value of name attribute of a Time field. The name attribute is required for each input field. If the name attribute is not specified in an input field then the data of that field would not be sent at all. Syntax: It returns th 2 min read HTML DOM Input Search name Property The Input Search name Property in HTML DOM is used to set or return the value of the name attribute of a search field. The name attribute is required for each input field. If the name attribute is not specified in an input field then the data of that field would not be sent at all. Syntax: It retu 2 min read HTML DOM Input Submit type Property The Input Submit type Property in HTML DOM returns the type of form element of the submit field. It always returns the submit for an Input submit field. Syntax: submitObject.typeReturn Values: It returns a string that represents the type of form element an input submit field is. Example: This examp 1 min read HTML DOM Input Submit value Property The Input Submit value Property in HTML DOM is used to set or return the value of the Input Submit Field. The value attribute specifies the text displayed in the Submit Field. Syntax: It returns the value property.submitObject.valueIt is used to set the value property.submitObject.value = textProp 2 min read Like