cmc-sales/php/app/webroot/js/ajax_pagination_email.js

28 lines
468 B
JavaScript
Raw Normal View History

$(function() {
/* Everything about this JS violates DRY. But it will work for now */
$(".pagingEmail").find('a').click(function() {
2011-03-20 22:34:13 -07:00
$('#emailTable').fadeOut('slow');
$("#ajaxLoadEmail").bind("ajaxSend", function() {
$(this).show();
}).bind("ajaxComplete", function() {
$(this).hide();
});
$.get($(this).attr('href'), function(data) {
$('#emailTable').html(data);
$('#emailTable').fadeIn('slow');
});
return false;
});
});