This is a little hard to explain, So I\'ll try my best
So while a HTML page loads, I\'d like there to be a cool loading screen going on. When it finishes loading, I
If in your site you have ajax calls loading some data, and this is the reason the page is loading slow, the best solution I found is with
$(document).ajaxStop(function(){ alert("All AJAX requests completed"); });
https://jsfiddle.net/44t5a8zm/ - here you can add some ajax calls and test it.