javascript - Ajax load percentage on page load -


i have many ajax call on page loads. have nested ajax calls. this

function getall(){     $.when(http_get('url1')).then(function(response){         $.when(http_get('url2')).then(function(response){             $.when(http_get('url3')).then(function(response){ 

now how can overall ajax loading percentage show in preloader.


Comments

Popular posts from this blog

sequelize.js - Sequelize group by with association includes id -

android - Robolectric "INTERNET permission is required" -

java - Android raising EPERM (Operation not permitted) when attempting to send UDP packet after network connection -