Skip to content

Instantly share code, notes, and snippets.

@andreasvirkus
Last active May 22, 2017 17:54
Show Gist options
  • Save andreasvirkus/551a1903e5a18119cbd8ac460ded5d7a to your computer and use it in GitHub Desktop.
Save andreasvirkus/551a1903e5a18119cbd8ac460ded5d7a to your computer and use it in GitHub Desktop.
// This is all it takes to create those cancerous popups.
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