HTML5
12. Bölüm : HTML5 History API
History Nesnesi
window.history.go(n)
window.history.back()
window.history.forward()
window.history.pushState(data, title [, url])
window.history.replaceState(data, title [, url])
window.history.go(-2);
History API Demo
popstate event'i ve history.state
pushState ile state ekleme :
history.pushState({foo: 'bar'},
'Sayfa Başlığı',
'/bar.htm');
popState ile state'i alma :
window.addEventListener("popstate", function(e) {
var foo = history.state.foo;
}, false);