Skip to content

Instantly share code, notes, and snippets.

@davidvanvickle
Created February 8, 2016 22:38
Show Gist options
  • Save davidvanvickle/9a8cb82997ffce1c1828 to your computer and use it in GitHub Desktop.
Save davidvanvickle/9a8cb82997ffce1c1828 to your computer and use it in GitHub Desktop.
function goodbye(e) {
if(!e) e = window.event;
//e.cancelBubble supported by IE - this will kill the bubbling process.
e.cancelBubble = true;
e.returnValue = 'You sure you want to leave?';
//This is displayed on the dialog
//e.stopPropagation works in Firefox.
if (e.stopPropagation) {
e.stopPropagation();
e.preventDefault();
}
}
window.onbeforeunload=goodbye;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment