Skip to content

Instantly share code, notes, and snippets.

@bozhink
Created May 14, 2018 05:57
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 bozhink/efe9f83b0851787faedaf68b4478c5f7 to your computer and use it in GitHub Desktop.
Save bozhink/efe9f83b0851787faedaf68b4478c5f7 to your computer and use it in GitHub Desktop.
Disable back button with JavaScript
// See https://codepen.io/dhavalt10/pen/rGLBzB
history.pushState(null, null, location.href);
window.onpopstate = function () {
history.go(1);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment