I would like to display a loading bar before the entire page is loaded. For now, I\'m just using a small delay:
$(document).ready(function(){ $(\'#page\')
I would like to display a loading bar before the entire page is loaded.
$(function() { $(".preload").fadeOut(2000, function() { $(".content").fadeIn(1000); }); });
.content {display:none;} .preload { width:100px; height: 100px; position: fixed; top: 50%; left: 50%; }
DEMO