Created
May 21, 2013 05:32
-
-
Save varemenos/5617668 to your computer and use it in GitHub Desktop.
JavaScript - "Are you sure you want to leave this page"
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
<a href="http://stackoverflow.com/questions/7794301/window-onunload-is-not-working-properly-in-chrome-browser-can-any-one-help-me/9325742#9325742">Leave this page!</a> |
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
window.onbeforeunload = function (e) { | |
console.log(e); | |
return 'Dialog text here.'; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment