Created
August 9, 2023 18:03
-
-
Save BlazerYoo/b6607d195c866dee37797a552ceed1e3 to your computer and use it in GitHub Desktop.
Prevent reload [source: https://stackoverflow.com/questions/63427966/how-do-i-prevent-a-browser-page-refresh-in-javascript]
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
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