Skip to content

Instantly share code, notes, and snippets.

@varemenos
Created May 21, 2013 05:32
Show Gist options
  • Save varemenos/5617668 to your computer and use it in GitHub Desktop.
Save varemenos/5617668 to your computer and use it in GitHub Desktop.
JavaScript - "Are you sure you want to leave this page"
<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>
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