jQuery(function ($) { $(document).ready(function() { //console.log("ready"); $('body').css({'overflow':'hidden'}); }); $(window).load(function() { //console.log("loaded"); $('#status').delay(50).fadeOut(); // will first fade out the loading animation $('#preloader').delay(350).fadeOut('slow'); // will fade out the white DIV that covers the website. $('body').delay(350).css({'overflow':'visible'}); }); })