Slide 41
Slide 41 text
$(‘#slider a’).click(function() {
history.pushState({ path: this.path },
‘’, this.href)
$.get(this.href, function(data) {
$(‘#slider‘).slideTo(data)
})
return false
})
$(window).bind(‘popstate’, function() {
$(‘#slider‘).slideTo(location.pathname)
})
https://github.com/blog/760-the-tree-slider