How to clear a form after submission
Updated December 10, 2025
If you want your form cleared after submission so that if users click the “Go Back” link the content is removed add the following Javascript to your site.
window.onbeforeunload = () => {
for(const form of document.getElementsByTagName('form')) {
form.reset();
}
}