In github's blog post about how they created the new tree slider, they give this as the code used:
$('#slider a').click(function() {
history.pushState({ path: this.path }, '', this.href)
$.get(this.href, function(data) {
$('#slider').slideTo(data)
})
return false
})
However I don't see how this works? They AJAX request the whole new page, so from <html> to </html> inclusive, then seemingly (using a method called 'slideTo'??) put this data into the slider element? Surely then you'd end up with a page within a page (likely with CSS glitches).
How when using AJAX and History API, do you get only the specific section that has changed? Or is it that the html code is replaced (but this is not the case in the above example)?
Where is the actual javascript github uses? And am I right that the example given can't be what is used as it won't work properly?
