Skip to content

Instantly share code, notes, and snippets.

@hayskytech
Created January 27, 2023 15:25
Show Gist options
  • Save hayskytech/136b972b7a83b55e523900542ef33696 to your computer and use it in GitHub Desktop.
Save hayskytech/136b972b7a83b55e523900542ef33696 to your computer and use it in GitHub Desktop.
Prevent form resubmission when page is refreshed.
<script>
if ( window.history.replaceState ) {
window.history.replaceState( null, null, window.location.href );
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment