AJAX pagination working on Enquiry table on user views
This commit is contained in:
parent
7bd1abe2c7
commit
a00dbfdbf8
25
webroot/js/ajax_pagination.js
Normal file
25
webroot/js/ajax_pagination.js
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
$(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;
|
||||
})
|
||||
|
||||
|
||||
});
|
||||
|
||||
Loading…
Reference in a new issue