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

java - How to compare two classes -

javascript - Why Selenium can't find an element that is graphically visible -

c# - Get the Class name in a class with atribute inside a attribute method -