Skip to content

Instantly share code, notes, and snippets.

@yorzi
Created March 23, 2011 06:17
Show Gist options
  • Save yorzi/882698 to your computer and use it in GitHub Desktop.
Save yorzi/882698 to your computer and use it in GitHub Desktop.
ajax_paginate with jQuery and will_paginate gem
$(document).ready(function() {
$('.pagination a').live('click',function (){
$.getScript(this.href);
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment