In Javascript, how do I "clear" the back (history -1)?

JavascriptHtmlCss

Javascript Problem Overview


When the user loads the page, I immediately do a window redirect to another location.

The problem is, when the user clicks back, it'll go back to the page which does the redirect.

Can I "cancel" the history of the previous page? So that when the user clicks back, it goes back TWO pages instead?

Javascript Solutions


Solution 1 - Javascript

Instead of using window.location = url; to redirect,

try:

window.location.replace(url);

> after using replace() the current page will not be saved in session > history, meaning the user won't be able to use the Back button to > navigate to it.

Solution 2 - Javascript

You can use location.replace to replace the current location entry (the redirect page) with the new one (the target). That requires that you do the redirection via JavaScript rather than with meta tags or a 302. E.g.:

// In the redirecting page
location.replace("path/to/target/page");

Live example | Live example source

Solution 3 - Javascript

For anyone coming across this page and looking for an AngularJS way to accomplish this (rather than javascript), use the $location service's replace() method (documentation) :

Use $location.url('/newpath'); or $location.path('/newpath'); as you normally would to do the redirection in angular. And then just add $location.replace(); right after it. Or you can chain the commands like this:

$location.url('/newpath').replace();

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionTIMEXView Question on Stackoverflow
Solution 1 - JavascriptxdazzView Answer on Stackoverflow
Solution 2 - JavascriptT.J. CrowderView Answer on Stackoverflow
Solution 3 - JavascriptRebeccaView Answer on Stackoverflow