Created
February 12, 2024 23:41
-
-
Save BlazerYoo/a9434156ddffb431a5f8cfe3514594e1 to your computer and use it in GitHub Desktop.
Prevent reload/exit of website
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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