Open In App

HTML DOM Input Submit name Property

Last Updated : 19 Jun, 2023
Improve
Improve
Like Article
Like
Save
Share
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.name
  • It 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 above
  • Edge 12 and above
  • Firefox 1 and above
  • Opera
  • Safari 1 and above


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads