# How to clear a form after submission

> Formspree Docs · Building Your Form · 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.

```javascript
window.onbeforeunload = () => {
  for(const form of document.getElementsByTagName('form')) {
    form.reset();
  }
}
```
