Display a loading bar before the entire page is loaded
Use a div #overlay with your loading info / .gif that will cover all your page: <div id=”overlay”> <img src=”loading.gif” alt=”Loading” /> Loading… </div> jQuery: $(window).load(function(){ // PAGE IS FULLY LOADED // FADE OUT YOUR OVERLAYING DIV $(‘#overlay’).fadeOut(); }); Here’s an example with a Loading bar: jsBin demo ;(function(){ function id(v){ return document.getElementById(v); } function … Read more