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.
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.
javascript
jquery
Share
Improve this question
asked Nov 15, 2013 at 14:40
sergsergsergserg22.3k4343 gold badges133133 silver badges185185 bronze badges6
1tbh, I don't you think this should be possible. I hate websites that do this.
– Phil
CommentedNov 15, 2013 at 14:42
There is no method clear in developer.mozilla/en-US/docs/DOM/window.history
– Tushar Gupta - curioustushar
CommentedNov 15, 2013 at 14:42
check: stackoverflow./a/2196109/2600397
– Kevin Cittadini
CommentedNov 15, 2013 at 14:43
@Phil: I need to do this because pressing back after logging out redisplays the screen. Of course nothing is clickable or usable, but the browser cache thinks it's a good idea to redisplay the view from cache.
– sergserg
CommentedNov 15, 2013 at 14:45
possible duplicate of How to clear browsing history using javascript
– Factor Mystic
CommentedDec 19, 2014 at 18:50
|
Show 1 more ment
1 Answer
1
Reset to default
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');