$(function() { $(".paging").find('a').click(function() { $('#enquiryTable').fadeOut('slow'); $("#ajaxLoad").bind("ajaxSend", function() { $(this).show(); }).bind("ajaxComplete", function() { $(this).hide(); }); $.get($(this).attr('href'), function(data) { $('#enquiryTable').html(data); $('#enquiryTable').fadeIn('slow'); }); return false; }); });