Skip to content

Instantly share code, notes, and snippets.

@reatlat
Last active October 10, 2023 12:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save reatlat/fd49246e1bed573ed354ba8a9913d826 to your computer and use it in GitHub Desktop.
Save reatlat/fd49246e1bed573ed354ba8a9913d826 to your computer and use it in GitHub Desktop.
Enhance your website's debugging experience with prevent-reload-page.js
window.onbeforeunload = function(e) {
var message = "Your confirmation message goes here.", e = e || window.event;
// For IE and Firefox
if (e) {
e.returnValue = message;
}
// For Safari
return message;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment