Form reset() Method
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. |
Related Pages
HTML Tutorial: HTML Forms
JavaScript Tutorial: JS Forms/Validation
❮ Form Object