Skip to content

Instantly share code, notes, and snippets.

@rehrumesh
Last active June 13, 2017 08:26
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 rehrumesh/4878fbb0f7b77e0edac452be227b3951 to your computer and use it in GitHub Desktop.
Save rehrumesh/4878fbb0f7b77e0edac452be227b3951 to your computer and use it in GitHub Desktop.
window.onbeforeunload = function(e) {
if (window.location.href.includes("sometext")) {
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