THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Form submit() Method

Form Object Reference 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.

Form Object Reference Form Object