function fetchFromOffset(offset, cb) {
$.post('https://api.cricapi.com/v1/countries?apikey=5f9f6f0b-7b3c-42a8-87cb-639818e3182f&offset=' + offset, function(data) {
if(data.status!="success") { alert("Failed"); return; }
let datarray = data.data;
if(!datarray)
cb([]);
else if(offset >= data.info.totalRows)
cb(datarray);
else
fetchFromOffset(offset + 25, function(data) {
cb(datarray.concat(data));
});
});
}
fetchFromOffset(0, function(data) {
console.log("Complete data got!",data);
});
Responsive Ads Here
Saturday, October 18, 2025
Subscribe to:
Post Comments (Atom)
Author Details
No. 1 Assamese Web Media in North-East India. Maintained & Published by Saiyad Bulbul Jamanur Hoque on behalf of Save Media Solution (A unit of SAVE)

No comments:
Post a Comment