var noiz = 1714299886; setInterval (function () { $.ajax({ type: "get", url: "https://jarraipena.euskarabildua.eus/hizlariak/benat-irasuegi/jarraipena-elementuak", data: { noiz: noiz }, success: function(data) { if (data != '') { if (data.constructor === Object && data.amaitua) { $('#loading').show(); window.location.href = "https://jarraipena.euskarabildua.eus/hizlariak/benat-irasuegi"; } if (data.constructor === Object && data.elementuak.constructor === Array && data.elementuak.length > 0) { $('#loading').show(); noiz = data.noiz; elemetuak_gehitu(data.elementuak); } } } }); }, 10000); function elemetuak_gehitu (lista) { if (lista.constructor === Array && lista.length > 0) { $(lista[0]).appendTo($('.row.bg-urdin')).hide().slideDown('slow', function () { setTimeout (function (){ elemetuak_gehitu(lista.slice (1, lista.length)); $(".a2a_dd").each(function() { a2a.init('page'); }); }, 500); }); } else { $('#loading').hide(); } }