Не могу понять, что не так:
<script>
$(document).on('click', '#ajaxbutton', function(e) {
e.preventDefault();
//alert("bottom!");
var url3=$('.nextt').attr('href');
if(url3!=undefined && url3!='')
{
$('.pagination').remove();
$('#result3').load(url3+'&loh=1');
$('.main-products').append($('#result3').html());
view = $.totalStorage('display');
if (view) {
display(view);
} else {
display('<?php echo $this->journal2->settings->get("product_view", "grid"); ?>');
}
//alert('1');
$('#result3').html('')
}
}
);
</script>