Input Submit form Property
Example
Return the id of the form containing the <input type="submit"> element:
var x = document.getElementById("mySubmit").form.id;
The result of x will be:
myForm
Try it Yourself »
Definition and Usage
The form property returns a reference to the form that contains the submit button.
This property returns a form object on success.
Note: This property is read only.
Browser Support
The form property is supported in all major browsers.
Syntax
submitObject.form
Technical Details
Return Value: | A reference to the form element containing the submit button. If the submit button is not in a form, null is returned |
---|
Input Submit Object