jQuery(document).ready(function() { /* Preloader */ $(window).load(function() { // will first fade out the loading animation $("#status").fadeOut("slow"); // will fade out the whole DIV that covers the website. $("#preloader").delay(500).fadeOut("slow").remove(); }) /* Final Countdown Settings */ var finalDate = '2015/06/01'; $('div.counter').countdown(finalDate) .on('update.countdown', function(event) { $(this).html(event.strftime('
%D
days
' + '
%H
hours
' + '
%M
minutes
' + '
%S
seconds
')); }); });