01.
function
listProductAjax(n,catId){
02.
$(
"#product-container"
).empty().append(
'<div align="center"><br><img src="images/loader.gif" id="category-loading"><br><br></div>'
);
03.
$.ajax({
04.
url:
'include/listProductWithAjax.php'
,
05.
data:{page:n,c:catId},
06.
type:
'get'
,
07.
success:
function
(data){
08.
setTimeout(
function
(){
09.
$(
"#product-container"
).empty().append(data).fadeIn(1000);
10.
$(
"#category-container"
).show();
11.
listPagingLinkAjax(n,catId);
12.
}, 500);
13.
}
14.
});
15.
}