Comment on Redirect to prevent back button

<- View Parent
ilinamorato@lemmy.world ⁨1⁩ ⁨week⁩ ago

I don’t know about “easily.” replaceState() is actually intended to make single-page apps easier to use, by allowing you to use your back button as expected even when you’re staying on the same URL the entire time.

Likewise, single-page apps are intended to be faster and more efficient than downloading a new static page that’s 99.9% identical to the old one every time you change something.

Fixing this bad experience would eliminate the legitimate uses of replaceState().

Now, what they could do is track your browser history “canonically” and fork it off whenever Javascript alters its state, and then allow you to use a keyboard shortcut (Alt + Back, perhaps?) to go to the “canonical” previous item in history instead of to the “forked” previous item.

source
Sort:hotnewtop