function ajaxGetNews(){ var row = Number($('#row').val()); var allcount = Number($('#all').val()); var rowperpage = Number($('#quante').val()); $.ajax({ url: "https://www.bonino1913.it/orangeCMS/ajax/getNews.php", type: "POST", data: {row:row,allcount:allcount,rowperpage:rowperpage}, success: function (response) { setTimeout(function () { console.log("reload 1"); var dati = JSON.parse(response); var html = ''; const monthNames = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sept", "Oct", "Nov", "Dec" ]; $.each(dati.contenuto, function (key, value) { console.log(key + ": " + JSON.stringify(value)); let newDate = new Date(value.data_inizio_pubblicazione); jsDate = newDate.getDate(); html += '
'+jsDate+'
'+monthNames[newDate.getMonth()]+''; html += '

'+value.titolo_it+'

'; html += '

'+value.testo_breve_it+'

Graphic
'; }); var $newItems = $(html); $(".demo-card-wrapper").append( $newItems ).isotope('appended', $newItems ); var rowno = row + rowperpage; debugger if (rowno >= allcount) { $('#load-more-news').hide(); } else { $("#load-more-news").html('CARICA_ALTRO'); } }, 100); } }); } $( "#load-more-news" ).click(function() { ajaxGetNews(); });