Skip to content

Instantly share code, notes, and snippets.

@tvpmb
Created May 1, 2012 03:12
Show Gist options
  • Save tvpmb/2564663 to your computer and use it in GitHub Desktop.
Save tvpmb/2564663 to your computer and use it in GitHub Desktop.
How to capture browser forward/back/refresh navigation
$(window).on('beforeunload', function(e) {
//confirm('UNLOAD', 'UNLOAD');
e.preventDefault();
//e.stopPropagation();
console.log('page navigation cancelled');
//debugger;
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment