Latest web development tutorials
 

Form reset() Method

< Form Object

Example

Reset a form:

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

Definition and Usage

The reset() method resets the values of all elements in a form (same as clicking the Reset button).

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


Browser Support

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

Method
reset() Yes Yes Yes Yes Yes

Syntax

formObject.reset()

Parameters

None.

Return Value

No return value.

< Form Object