Click here to Skip to main content
15,902,894 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I am designing a web page which consists of around 75 images. When the page gets loaded it shows only the outer box and it takes long time to display all images, so i want to display loading message or image till the page gets fully loaded.

I tried
JavaScript
$(window).load(function() {
    $("#pageloaddiv").fadeOut(2000);
});

But it works only for the page and not for the images. Is there any way to display loading message till all the images get loaded?
Posted
Updated 23-Feb-14 4:36am
v2

The similar kind of query is answered at below link:

http://stackoverflow.com/questions/4635388/how-to-display-loading-image-while-actual-image-is-downloading[^]

Hope this would help you. Thanks.
 
Share this answer
 
v3
If you are only looking for the load icon, try http://www.netwaver.com/online-tools/12-ajax-loading-icon-generators/[^].
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900