I'm trying to figure out how to use HTML5's history functions. Here's my basic code:
$(document).ready(function () {
var stateObj = { foo: "bar" };
history.pushState(stateObj, "page 2", "bar.html");
console.log(history.state);
$(window).bind('popstate', function(e) {
console.log(e.originalEvent);
});
});
I'm using Jquery 1.5.1. Here's the console output:
undefined
PopStateEvent
bubbles: false
cancelBubble: false
cancelable: true
clipboardData: undefined
currentTarget: DOMWindow
defaultPrevented: false
eventPhase: 2
returnValue: true
srcElement: DOMWindow
state: null
target: DOMWindow
timeStamp: 1300966328992
type: "popstate"
__proto__: PopStateEvent
I have two questions:
- Why is the history.state undefined? Even in the popstate event nothing exists.
- Why is popstate even called?! I never pressed back or forward. This is on the first load.
Hopefully somebody can shed some light on this for me.
Thanks in advance!
Sean