cmc-sales/webroot/js/ajax_pagination.js

26 lines
393 B
JavaScript
Raw Normal View History

$(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;
2011-03-16 17:19:37 -07:00
});
});