Skip to content

Instantly share code, notes, and snippets.

@Nagasaki45
Created May 13, 2014 11:20
Show Gist options
  • Save Nagasaki45/5828869609316ef61fa4 to your computer and use it in GitHub Desktop.
Save Nagasaki45/5828869609316ef61fa4 to your computer and use it in GitHub Desktop.
blocking navigation from page script
var block_navigation = function(state) {
if (state) {
window.onbeforeunload = function(e) {
// If we haven't been passed the event get the window.event
e = e || window.event;
var message = 'Any text will block the navigation and display a prompt';
// For IE6-8 and Firefox prior to version 4
if (e) { e.returnValue = message; }
// For Chrome, Safari, IE8+ and Opera 12+
return message;
};
} else {
window.onbeforeunload = null
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment