I am trying to something simple -- make a jQuery script that will wait to show the entire page, including all DIVs, text, and images. While the page is loading, instead of showi
I think the best way would be to have a 'cover' div which will cover the whole page whilst it loads. It would be opaque, and would contain your GIF.
The following would then hide the div once the page has loaded:
$(document).ready(function() {
// Hide the 'cover' div
});
The following would make the div the size of the page:
.div{
height:100%;
width:100%;
overflow:hidden;
}