Skip to content

Instantly share code, notes, and snippets.

@dpsk
Forked from moro/gist:1024620
Created December 13, 2011 12:37
Show Gist options
  • Save dpsk/1471991 to your computer and use it in GitHub Desktop.
Save dpsk/1471991 to your computer and use it in GitHub Desktop.
Kaminari and pushState
(function($){
$('.pagination a[data-remote=true]').live('ajax:success', function(e){ window.history.pushState('', '', $(e.target).attr('href')) })
$(window).bind('popstate', function(){ $.ajax({url:window.location, dataType:'script'}) ; return true });
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment