<a id="load_more" class="btn btn-primary"><?php echo $button_more; ?></a>
$.ajax({
url:'index.php?route=module/loadMore',
type:"GET",
data:'module_id=<?php echo $module_id; ?>&page=' + id_<?php echo $module_id; ?>,
success:function (data) {
$('#app_<?php echo $module_id; ?>').append($(data).find('.gdfgdf'));
}
});
{
html: 'Your html markup',
last: false, // or true
}
$.ajax({
url:'index.php?route=module/loadMore',
type:"GET",
dataType: 'json',
data: {
module_id: '<?php echo $module_id; ?>',
page : 'id_<?php echo $module_id; ?>',
}
success:function (response) {
$('#app_<?php echo $module_id; ?>').append($(response.html).find('.gdfgdf'));
if (response.last) {
$('#more_button').hide();
}
}
});