Skip to content

Instantly share code, notes, and snippets.

@markbrown4
Created March 24, 2012 07:58
Show Gist options
  • Save markbrown4/2179843 to your computer and use it in GitHub Desktop.
Save markbrown4/2179843 to your computer and use it in GitHub Desktop.
pushState partial page updates
$('body').on('click', '.partial', function() {
if (Modernizr.history) {
$('#content').load(this.href, function() {
history.pushState(null, this.title, this.href);
});
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment