Form submit() Method

❮ Form Object

Example

Submit a form:

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

Description

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
Copyright 1999-2023 by Refsnes Data. All Rights Reserved.