Skip to content

Instantly share code, notes, and snippets.

@gabamnml
Created January 24, 2013 18:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gabamnml/4626160 to your computer and use it in GitHub Desktop.
Save gabamnml/4626160 to your computer and use it in GitHub Desktop.
Prevent close windows with confirm
onbeforeunload = function(e){
if(confirm('Are you nuts? Do you really want to leave me?')){
return 'OK, Good Bye then';
}
else {
e = e || event;
if(e.preventDefault){e.preventDefault();}
e.returnValue = false;
return 'I said, "Are you nuts? Do you really want to leave me?"';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment