Open In App

HTML | DOM Input Submit form Property

Last Updated : 26 Aug, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

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>
        GeeksForGeeks
    </h1>
    <h2>
        HTML DOM Input Submit form Property
    </h2>
    <form id="myGeeks" action="#" method="get" target="_self">
        <input type = "submit" id = "Geeks" name="myGeeks"
            value = "Submit @ geeksforgeeks" formTarget="_blank"
            formMethod="post">
    </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 form Property -->
    <script>
        function myGeeks() {
            var btn = document.getElementById("Geeks").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


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads