Skip to content

Instantly share code, notes, and snippets.

@SteAllan
Created January 21, 2014 08:25
Show Gist options
  • Save SteAllan/8536244 to your computer and use it in GitHub Desktop.
Save SteAllan/8536244 to your computer and use it in GitHub Desktop.
A JS function to alert the user when they're about to leave the page (http://css-tricks.com/use-target_blank/?utm_source=dlvr.it&utm_medium=twitter)
window.onbeforeunload = function() {
return "Two buttons will be below this message asking if user wants to stay on this page or leave.";
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment