How to reset an HTML form on submit using JavaScript

RMAG news

By default, HTML forms are reset and all fields are cleared when we submit them.

However, in instances where you use the preventDefault() method in the JavaScript file, the form doesn’t reset automatically.

In such situations, we have to trigger the reset event manually using the following JavaScript method:

document.getElementById(formId).reset();

Links

https://www.w3schools.com/jsref/met_form_reset.asp

This is a cross-post from the original in my blog site

Leave a Reply

Your email address will not be published. Required fields are marked *