I am fetching data from various resources through ajax and displaying them on page, jQuery.ready() . And applying isotope on $(window).load(function(){});
.
Since writing from these number of resources takes time, it takes time to apply isotope masonry view. It is noticeable from HTML page. So for an alternate, I fetched 4-5 resources on jQuery.ready() => set isotope on $(window).load(function(){});
=> then fetched data from rest resources on jQuery.load().
But any call in load() is not happening.
What should I do for this lazy loading, or rather lazy calling?