HTML DOM Form submit() Method
THE WORLD'S LARGEST WEB DEVELOPER SITE

Form submit() Method

❮ Form Object

Example

Submit a form:

document.getElementById("myForm").submit();
Try it Yourself »

Definition and Usage

The submit() method submits the form (same as clicking the Submit button).

Tip: Use the reset() method to reset the form.


Browser Support

The numbers in the table specify the first browser version that fully supports the method.

Method
submit() Yes Yes Yes Yes Yes

Syntax

formObject.submit()

Parameters

None.

Return Value

No return value.

Related Pages

HTML Tutorial: HTML Forms

JavaScript Tutorial: JS Forms/Validation


❮ Form Object