Skip to content

Instantly share code, notes, and snippets.

@gerasimua
Last active August 29, 2015 14:01
Show Gist options
  • Save gerasimua/a461ba8399ad937179d4 to your computer and use it in GitHub Desktop.
Save gerasimua/a461ba8399ad937179d4 to your computer and use it in GitHub Desktop.
Confirm tab reload
window.onbeforeunload = function(e) {
e = e || window.event;
// For IE and Firefox prior to version 4
if (e) {
e.returnValue = 'Sure?';
}
// For Safari
return 'Sure?';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment