Created
February 8, 2016 22:38
-
-
Save davidvanvickle/9a8cb82997ffce1c1828 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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