Created
March 23, 2011 06:17
-
-
Save yorzi/882698 to your computer and use it in GitHub Desktop.
ajax_paginate with jQuery and will_paginate gem
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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