html - Clear all fields in a form upon going back with browser back button - Stack Overflow

PHOTO EMBED

Sun Jun 28 2020 10:47:01 GMT+0000 (Coordinated Universal Time)

Saved by @mishka #jquery

$(window).bind("pageshow", function() {
    var form = $('form'); 
    // let the browser natively reset defaults
    form[0].reset();
});
content_copyCOPY

To clear a form when you come back to the page after clicking the browser back button.

https://stackoverflow.com/questions/8861181/clear-all-fields-in-a-form-upon-going-back-with-browser-back-button