Given the following:
$(window).bind(\"popstate\", function() { alert(\'popstate\'); });
On first load, the alert fires with FireFox and
This is my workaround.
window.setTimeout(function() { window.addEventListener('popstate', function() { // ... }); }, 1000);