Open In App

HTML DOM Input Submit name Property

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: 



submitObject.name
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. 




<!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. 




<!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:


Article Tags :