Advertisement
Guest User

Untitled

a guest
Sep 18th, 2011
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function test() {
  2.     $('.pagination a').click(function(){
  3.         $.ajax({
  4.             url: $(this).attr('href'),
  5.             success: function (data) {
  6.                 $("#postcontainer").html($(data).find("#postcontainer").html());
  7.             },
  8.             complete: test
  9.         });
  10.         return false;
  11.     });
  12. } test();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement