Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
<script>
$( document ).ready(function() {
//MAIN AJAX
$('.ajax-send').click(function(){
limit= 100;
offset = 0;
function send(){
$.ajax({
url: 'script.php',
data:{
action: "execute",
offset: offset
},
complete: function(data){
if(data.responseText <= limit){
offset += 100;
send();
}
else{
//DO WHATEVER U WANT
}
}
});
}
send();
});
});
</script>