2011-03-16 17:02:23 -07:00
|
|
|
$(function() {
|
|
|
|
|
|
2011-03-20 19:26:07 -07:00
|
|
|
/* Everything about this JS violates DRY. But it will work for now */
|
|
|
|
|
|
2011-03-16 17:02:23 -07:00
|
|
|
|
|
|
|
|
$(".paging").find('a').click(function() {
|
|
|
|
|
|
|
|
|
|
$('#enquiryTable').fadeOut('slow');
|
|
|
|
|
|
2011-03-20 19:26:07 -07:00
|
|
|
$("#ajaxLoadEnquiry").bind("ajaxSend", function() {
|
2011-03-16 17:02:23 -07:00
|
|
|
$(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
|
|
|
});
|
2011-03-16 17:02:23 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|