Davidoff Cofanetto Cool Water
26,00 EUR
Descrizione
Loading...
')
$.ajax({
url: url,
type: 'GET',
dataType: 'json',
success: function (r) {
$('.data-link').remove();
$('.show-text-more').remove();
$('#product-container').append(r)
},
Error: function (e) {
$('.shop-btn-showmore').html(HtmlPage);
}
})
}
})
$(document).on('click', '.page-item a', function (e) {
e.preventDefault();
var url = $(this).attr('href');
if (url !== undefined && url != 'javascript:void(0)') {
var htmlPage = $(this).closest('li').html();
$(this).closest('li').html('
Loading...
');
$.ajax({
url: url,
type: 'GET',
dataType: 'json',
success: function (r) {
console.log(r);
$('.show-text-more').remove();
$('.data-link').remove();
$('#product-container').html(r);
$('html, body').animate({scrollTop: $('.product-result').offset().top - 100})
},
Error: function (e) {
$(this).closest('li').html(htmlPage);
console.log(e);
}
})
}
})