I may have misinterpreted what you are trying to do, but perhaps this will work:

$(navigation);

function navigation() {
 $('.nav_paginacion ul li a').click(function() {
   $.get( this.href, function(data) {
     $("#comment_block").html(data);
     navigation();
   });
   return false;
 });
}

~Sean

Reply via email to