I designed the site below for my friend: http://noorjamali.info/
How can I prevent the contents of a website from being displayed while the webpage is loading? (he has a bad idea while loading the page).
1 . Could you introduce me a jquery plugin for this purpose. As you will see on this website, I proceed as follows:
css
.Home_Page
{
display: none;
}
jquery
var $j = jQuery.noConflict();
$j(document).ready(function () {
$j('.Home_Page').fadeIn(2000);
});
but the content remains while the page loads.
2 . How can I fix this problem?
3 . How to show animated gif instead of showing content during page load?
Thanks in advance.