Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Chrome popstate not firing on Back Button if no user interaction

I'm trying to use "pushState" and the "popstate" event to trap Back button navigation, however, while the popstate event triggers correctly in Firefox, it doesn't trigger in Chrome (Version 76.0.3809.87 (Official Build) (64-bit)) if there is no user interaction.

From testing, it looks like the popstate event only gets triggered if the user interacts with the page (ie. clicks somewhere on the document). So if you load the page without interacting and hit Back, the popstate function is not called.

I've added a Fiddle to showcase this: https://jsfiddle.net/0xwvLndu/

To test the Fiddle in Chrome, just click the link and hit the Back button. You'll see no alert. Then click the link again but this time click anywhere on the Fiddle document and then hit the Back button, the alert is then triggered.

I found a discussion on the Chromium forum that may relate to this quirk, and perhaps this has been implemented to prevent abuse of history entries - https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/OCS7g72HtyI and https://github.com/WICG/interventions/issues/21#issuecomment-425609246

If this is the case, does it mean that popstate cannot be relied on anymore to trap Back button actions, and if so, is there a work around solution?

Below is an example of what I've been testing with:

window.addEventListener('load', function() {     history.pushState(null, null, document.URL); });  window.addEventListener('popstate', function(event) {     alert('test'); }); 

I expected the alert to be triggered on Back Button regardless of user interaction, but this does not happen in Chrome.

like image 443
Praemon Avatar asked Aug 03 '19 14:08

Praemon


People also ask

What triggers Popstate?

The popstate event will be triggered by doing a browser action such as a click on the back or forward button (or calling history. back() or history. forward() in JavaScript). Browsers tend to handle the popstate event differently on page load.

Which event is fired when the history of browser Window changes?

HTML DOM PopStateEvent Events that occur when the window's history changes.


1 Answers

Try adding a setTimeout of 0

window.onpopstate = () => setTimeout(alert.bind(window, "Pop"), 0); 

When writing functions that process popstate event it is important to take into account that properties like window.location will already reflect the state change (if it affected the current URL), but document might still not. If the goal is to catch the moment when the new document state is already fully in place, a zero-delay setTimeout() method call should be used to effectively put its inner callback function that does the processing at the end of the browser event loop: window.onpopstate = () => setTimeout(doSomeThing, 0);

Content is taken from https://developer.mozilla.org/en-US/docs/Web/API/Window/popstate_event

On a sidenote it is advised not to use this as browsers may remove this any time.

like image 180
Jerin Joseph Avatar answered Sep 18 '22 13:09

Jerin Joseph