Skip to content

Instantly share code, notes, and snippets.

@yasirtaher
Last active April 28, 2016 09:04
Show Gist options
  • Save yasirtaher/b542af375438e3acf5a673cdeb70e835 to your computer and use it in GitHub Desktop.
Save yasirtaher/b542af375438e3acf5a673cdeb70e835 to your computer and use it in GitHub Desktop.
prevent a browser from going back in history
//prevent to go back
history.pushState(null, null, location.href);
window.onpopstate = function(event) {
history.go(1);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment