Skip to content

Instantly share code, notes, and snippets.

@Nagasaki45
Created May 13, 2014 11:22
Show Gist options
  • Save Nagasaki45/a1b0c9f53bfbb80308f1 to your computer and use it in GitHub Desktop.
Save Nagasaki45/a1b0c9f53bfbb80308f1 to your computer and use it in GitHub Desktop.
Remove current page from browsing history
$(document).ready(function() {
$("#submit_button").on("click", function() {
window.history.replaceState({}, 'foo page', '/foo');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment