Skip to content

Instantly share code, notes, and snippets.

@BlazerYoo
Created February 12, 2024 23:41
Show Gist options
  • Save BlazerYoo/a9434156ddffb431a5f8cfe3514594e1 to your computer and use it in GitHub Desktop.
Save BlazerYoo/a9434156ddffb431a5f8cfe3514594e1 to your computer and use it in GitHub Desktop.
Prevent reload/exit of website
// Prevent reload
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