THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Form reset() Method

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

Internet Explorer Firefox Opera Google Chrome Safari

The reset() method is supported in all major browsers.


Syntax

formObject.reset()

Parameters

None.

Return Value

No return value.

Form Object Reference Form Object