Browser.referrer does not show previous (referring) page

Is this supposed to show the page immediately before the current page?

{{browser.referrer}}

I have put this into an include which is on every page but it only shows the first/original page that I came from and shows that same page as I navigate through the site, rather than showing the previous page to the one I’m on.

Current set-up : SPA Pages, Windows 10, MySQL, PHP

The referrer is something from the browser and is set on navigation, however with a spa page you aren’t actual navigating but loading the next page inside your current one.

https://developer.mozilla.org/en-US/docs/Web/API/Document/referrer

1 Like

Hi @patrick thanks for your answer and yes that makes sense now that you have mentioned it. The question came about after trying to create a button/back button to go to an anchor. Can you shed any light on how to do this? Previous question was at How to Back Button with parameters?