First of all I\'m not entirely sure what I\'m doing or expecting is right. There doesn\'t seem to be much documentation about this, but what I\'ve read suggests that this sh
if(navigator.userAgent.toLowerCase().indexOf('chrome') > -1 !== true) { runpopState(); } function runpopState() { alert("POP STATE"); } window.onpopstate = function () { runpopState(); };
Until they fix the bug, a solution like this will suffice.