Reputation: 24625
I need to apply this to images that are selected by jQuery selector for example $("img"), should apply this to all images in page.
Upvotes: 1
Views: 566
Reputation: 3510
There is a tutorial at
http://jqueryfordesigners.com/image-loading/
that you would want to supplement with an each() loop in $("img")
Upvotes: 0
Reputation: 31174
jquery loading image while elements loads https://stackoverflow.com/.../adding-a-loading-image-to-dynamic-images-comming-from-flickr
Upvotes: 1
Reputation: 1985
I guess you can do like this.
create an initial layout with the following:
Image that you are loading with visibility:hidden;
div with loading message.
jQuery's domready show the image and hide the div.
Is this okay?
Upvotes: 0