Skip to content

Instantly share code, notes, and snippets.

@dsebao
Created March 28, 2014 04:24
Show Gist options
  • Save dsebao/9825398 to your computer and use it in GitHub Desktop.
Save dsebao/9825398 to your computer and use it in GitHub Desktop.
WP easy AJAX pagination
jQuery(function($) {
$('#content').on('click', '#pagination a', function(e){
e.preventDefault();
var link = $(this).attr('href');
$('#content').fadeOut(500, function(){
$(this).load(link + ' #content', function() {
$(this).fadeIn(500);
});
});
});
});
//http://stackoverflow.com/questions/15983244/simple-wordpress-ajax-pagination
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment