8

Using javascript (I'm using jQuery if that simplifies things), how can I clear the back button history?

I do not mean the entire browser history.

I mean the history in the tab back button.

sergserg
  • 21,716
  • 41
  • 129
  • 182

1 Answers1

7

You cannot remove the entire back button history. All you can do is replace the last entry with the next page, using window.location.replace('url');

Rory McCrossan
  • 331,213
  • 40
  • 305
  • 339