Skip to content

Instantly share code, notes, and snippets.

@BlazerYoo
Created August 9, 2023 18:03
Show Gist options
  • Save BlazerYoo/b6607d195c866dee37797a552ceed1e3 to your computer and use it in GitHub Desktop.
Save BlazerYoo/b6607d195c866dee37797a552ceed1e3 to your computer and use it in GitHub Desktop.
window.addEventListener('beforeunload', (event) => {
// Cancel the event as stated by the standard.
event.preventDefault();
// Chrome requires returnValue to be set.
event.returnValue = '';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment