Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using History API for my web app and have one issue. I do Ajax calls to update some results on the page and use history.pushState() in order to update the browser's location bar without page reload. Then, of course, I use window.popstate in order to restore previous state when back-button is clicked.

The problem is well-known — Chrome and Firefox treat that popstate event differently. While Firefox doesn't fire it up on the first load, Chrome does. I would like to have Firefox-style and not fire the event up on load since it just updates the results with exactly the same ones on load. Is there a workaround except using History.js? The reason I don't feel like using it is — it needs way too many JS libraries by itself and, since I need it to be implemented in a CMS with already too much JS, I would like to minimize JS I am putting in it.

So, would like to know whether there is a way to make Chrome not fire up 'popstate' on load or, maybe, somebody tried to use History.js as all libraries mashed up together into one file.

share|improve this question

8 Answers

In Google Chrome in version 19 the solution from @spliter stopped working. As @johnnymire pointed out, history.state in Chrome 19 exists, but it's null.

My workaround is to add window.history.state !== null into checking if state exists in window.history:

var popped = ('state' in window.history && window.history.state !== null), initialURL = location.href;

I tested it in all major browsers and in Chrome versions 19 and 18. It looks like it works.

share|improve this answer
5  
Thanks for the heads up; I think you can simplify the in and null check with just != null since that will take care of undefined as well. – pimvdb May 18 '12 at 11:03
1  
Using this will only work if you always use null in your history.pushState() methods like history.pushState(null,null,'http//example.com/). Granted, that'd probably most usages (that's how it's set up in jquery.pjax.js and most other demos). But if the browsers implements window.history.state (like FF and Chrome 19+), window.history.state could be non-null on a refresh or after a browser restart – unexplainedBacn Jun 8 '12 at 4:36
3  
This isn't working anymore for me in Chrome 21. I wound up just setting popped to false on page load and then setting popped to true on any push or pops. This neuters Chrome's pop on first load. It's explained a bit better here: github.com/defunkt/jquery-pjax/issues/143#issuecomment-6194330 – Chad von Nau Sep 2 '12 at 11:20
@ChadvonNau excellent idea, and it works a treat - thanks very much! – sowasred2012 Mar 7 at 12:55
up vote 20 down vote accepted

The solution has been found in jquery.pjax.js lines 195-225:

// Used to detect initial (useless) popstate.
// If history.state exists, assume browser isn't going to fire initial popstate.
var popped = ('state' in window.history), initialURL = location.href


// popstate handler takes care of the back and forward buttons
//
// You probably shouldn't use pjax on pages with other pushState
// stuff yet.
$(window).bind('popstate', function(event){
  // Ignore inital popstate that some browsers fire on page load
  var initialPop = !popped && location.href == initialURL
  popped = true
  if ( initialPop ) return

  var state = event.state

  if ( state && state.pjax ) {
    var container = state.pjax
    if ( $(container+'').length )
      $.pjax({
        url: state.url || location.href,
        fragment: state.fragment,
        container: container,
        push: false,
        timeout: state.timeout
      })
    else
      window.location = location.href
  }
})
share|improve this answer
7  
This solution stopped working for me on Windows (Chrome 19), still working on Mac (Chrome 18). Seems like history.state exists in Chrome 19 but not 18. – johnnymire Apr 16 '12 at 13:10
1  
@johnnymire I posted my solution for Chrome 19 lower: stackoverflow.com/a/10651028/291500 – Pavel Linkesch May 18 '12 at 10:42

A more direct solution than reimplementing pjax is set a variable on pushState, and check for the variable on popState, so the initial popState doesn't inconsistently fire on load (not a jquery-specific solution, just using it for events):

$(window).bind('popstate', function (ev){
  if (!window.history.ready && !ev.originalEvent.state)
    return; // workaround for popstate on load
}

// ... later ...

function doNavigation(nextStep) {
  window.history.ready = true;
  history.pushState(state, null, 'progress.php?step='+ nextStep);
}
share|improve this answer
Wouldn't that if always evaluate to false? I mean, window.history.ready is always true. – drozzy Jan 30 '12 at 18:55
Updated the example to be a little more clear. Basically, you just want to only handle popstate events once you give the all-clear. You could achieve the same effect with a setTimeout 500ms after load, but to be honest it's a bit cheap. – Tom McKenzie Feb 1 '12 at 12:20
3  
This should be the answer IMO, I tried Pavels solution and it did not work properly in Firefox – Porco Jun 26 '12 at 18:06
This worked for me as an easy solution to this annoying problem. Thanks a lot! – Nirazul Apr 11 at 10:15

Using setTimeout only isn't a correct solution because you have no idea how long it will take for the content to be loaded so it's possible the popstate event is emitted after the timeout.

Here is my solution: https://gist.github.com/3551566

/*
* Necessary hack because WebKit fires a popstate event on document load
* https://code.google.com/p/chromium/issues/detail?id=63040
* https://bugs.webkit.org/process_bug.cgi
*/
window.addEventListener('load', function() {
  setTimeout(function() {
    window.addEventListener('popstate', function() {
      ...
    });
  }, 0);
});
share|improve this answer
This works well. Thanks. – user647345 Feb 25 at 0:58

This is my workaround.

window.setTimeout(function() {
  window.addEventListener('popstate', function() {
    // ...
  });
}, 1000);
share|improve this answer
1  
Ugly but effective. – Forrest May 16 '12 at 21:29

Webkit's initial onpopstate event has no state assigned, so you can use this to check for the unwanted behaviour:

window.onpopstate = function(e){
    if(e.state)
        //do something
};

A comprehensive solution, allowing for navigation back to the original page, would build on this idea:

<body onload="init()">
    <a href="page1" onclick="doClick(this); return false;">page 1</a>
    <a href="page2" onclick="doClick(this); return false;">page 2</a>
    <div id="content"></div>
</body>

<script>
function init(){
   openURL(window.location.href);
}
function doClick(e){
    if(window.history.pushState)
        openURL(e.getAttribute('href'), true);
    else
        window.open(e.getAttribute('href'), '_self');
}
function openURL(href, push){
    document.getElementById('content').innerHTML = href + ': ' + (push ? 'user' : 'browser'); 
    if(window.history.pushState){
        if(push)
            window.history.pushState({href: href}, 'your page title', href);
        else
            window.history.replaceState({href: href}, 'your page title', href);
    }
}
window.onpopstate = function(e){
    if(e.state)
        openURL(e.state.href);
};
</script>

While this could still fire twice (with some nifty navigation), it can be handled simply with a check against the previous href.

share|improve this answer
Thanks. The pjax solution stopped working on iOS 5.0 because the window.history.state is also null in iOS. Just checking if the e.state property is null is enough. – Husky Sep 19 '12 at 14:51

Here's my solution:

var _firstload = true;
$(function(){
    window.onpopstate = function(event){
        var state = event.state;

        if(_firstload && !state){ 
            _firstload = false; 
        }
        else if(state){
            _firstload = false;
            // you should pass state.some_data to another function here
            alert('state was changed! back/forward button was pressed!');
        }
        else{
            _firstload = false;
            // you should inform some function that the original state returned
            alert('you returned back to the original state (the home state)');
        }
    }
})   
share|improve this answer

You can create an event and fire it after your onload handler.

var evt = document.createEvent("PopStateEvent");
evt.initPopStateEvent("popstate", false, false, { .. state object  ..});
window.dispatchEvent(evt);

Note, this is slightly broke in Chrome/Safari, but I have submitted the patch in to WebKit and it should be available soon, but it is the "most correct" way.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.