How to delay ajax using jquery
I need to access an API but I dont want to shoot with 100 requests at the same time so I want to make 1 request per second so I write: $.each(added_collections, function(index, collection) { $.each(collection, function(index1, page) { $.each(page,…