vote up 3 vote down star
2

Is it possible to detect when all images are loaded via a jQuery event?

Ideally, there should be a

$(document).idle(function()
{
}

or

$(document).contentLoaded(function()
{
}

But I can't find such a thing.

I thought of attaching an event like this:

$(document).ready(function()
{
    var imageTotal = $('img').length;
    var imageCount = 0;        
    $('img').load(function(){if(++imageCount == imageTotal) doStuff();});
}

But will this break if an image fails to load? It's critically important for the method to be called, and at the right time.

flag

71% accept rate
1  
Why don't you use the onload event: $(window).load(doStuff)? Onload will, however, wait for other resources too (e.g. scripts, stylesheets & flash) and not just images, which may or may not be OK to you. – Moff May 26 at 13:52
Attaching a load event to all your img tags, as you have in your code sample, should be functional. If an image fails to load doStuff() won't be called, but that seems reasonable given your requirement that all the images must be loaded. – Steve Goodman May 26 at 14:18

2 Answers

vote up 2 vote down check

Thanks to Moff, above. The suggestion to use $(window).load(); was a great one. I am now using this event to handle all my jQuery.

I will leave this open for a while to see if someone has a more direct approach.

EDIT: Closing - timeout

link|flag
vote up 3 vote down

If you want to check for not all images, but a specific one (eg one that you replaced dinamically after DOM is already complete) you can use this:

$('#myImage').attr('src', 'image.jpg').load(function() {
alert('Image Loaded');
});

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.