HTML | DOM Input Submit form Property

The Input Submit form Property in HTML DOM is used to return the reference of form containing the input Submit field. It is a read-only property that returns the form object on success.

Syntax: 

submitObject.form

Return Values: It returns a string value which specify the reference of the form containing the Input submit field

Example: This example illustrates that how to return the Input Submit form property. 

HTML




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Input Submit form Property
    </title>
</head>
<body style="text-align:center;">
    <h1>
        w3wiki
    </h1>
    <h2>
        HTML DOM Input Submit form Property
    </h2>
    <form id="myBeginner" action="#" method="get" target="_self">
        <input type = "submit" id = "Beginner" name="myBeginner"
            value = "Submit @ w3wiki" formTarget="_blank"
            formMethod="post">
    </form>
     
<p>
        click on below button to return the Property
    </p>
 
    <button onclick = "myBeginner()">
        Click Here!
    </button>
    <p id = "GFG"style="font-size:25px;"></p>
 
     
    <!-- Script to return submit form Property -->
    <script>
        function myBeginner() {
            var btn = document.getElementById("Beginner").form.id;
            document.getElementById("GFG").innerHTML = btn;
        }
    </script>
</body>
</html>


Output: 
Before Clicking the Button: 

After Clicking the Button: 

Supported Browsers: The browser supported by DOM Input Submit form property are listed below: 

  • Google Chrome 1 and above
  • Edge 12 and above
  • Firefox 1 and above
  • Opera
  • Safari 1 and above