Click a link and need to go back 10x to get back. Yes, I enjoy the footballs.

  • @ArbitraryValue
    link
    English
    629 days ago

    I don’t understand why browsers support this “functionality”.

    • Scrubbles
      link
      fedilink
      English
      549 days ago

      It’s not for this, of course. It’s because in the world of single page applications built in react and angular where there is no physical back, like no actual server page to go back to just JavaScript, you have to code in what the back button means. Even though there’s no server calls to ask for a new page. New page. Most people still expect that forward and back will still go forward and back in standard navigation.

      Sites like this it’s pretty clear that they just overwrite that with the last 20 calls to their own page, but the alternative is that single page applications would not be able to have forward or back functionality

        • Scrubbles
          link
          fedilink
          English
          258 days ago

          Great I’ll just add a unique guid to each path that is ignored and returns to the same place. You show me a 10 foot fence I’ll show you an 11 foot ladder.

          • @[email protected]
            link
            fedilink
            English
            2
            edit-2
            8 days ago

            I mean, I get that. I was making a joke. But 12 ft fence? Load in sandbox and compare html. Your move.

                • @[email protected]
                  link
                  fedilink
                  English
                  18 days ago

                  15 ft ladder:

                  <div hidden>
                  <?= rand() ?>
                  <?= rand() ?>
                  <?= rand() ?>
                  <?= rand() ?>
                  <?= rand() ?>
                  <?= rand() ?>
                  <?= rand() ?>
                  <?= rand() ?>
                  <?= rand() ?>
                  <?= rand() ?>
                  <?= rand() ?>
                  <?= rand() ?>
                  <?= rand() ?>
                  <?= rand() ?>
                  <?= rand() ?>
                  </div>
                  
    • @[email protected]
      link
      fedilink
      English
      38 days ago

      It’s a very “dumb” implementation of a generally useful feature. Browsers don’t keep track of how many times you’re redirected to the same site or try to consolidate the back-button list accordingly, but they certainly could. Wouldn’t be surprised if there was a plugin to this effect.

      • @[email protected]
        link
        fedilink
        English
        128 days ago

        They actually do. To avoid infinite loops. If a URL redirects to the identical URL for more than ~5 times most browsers will refuse to load and show an error instead.

        That’s why sites like this will generate new URLs with the same content.