Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function test() {
- $('.pagination a').click(function(){
- $.ajax({
- url: $(this).attr('href'),
- success: function (data) {
- $("#postcontainer").html($(data).find("#postcontainer").html());
- },
- complete: test
- });
- return false;
- });
- } test();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement