Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to do:

  $("img").bind('load', function() {
    // do stuff
  });

But the load event doesn't fire when the image is loaded from cache. The jQuery docs suggest a plugin to fix this, but it doesn't work

share|improve this question
7  
Since your question things have changed. The broken plugin was moved to a gist and later to a repo with a small working plugin jQuery.imagesLoaded. They fix all the little browser quirks. – Lode Nov 10 '11 at 12:28
Above mentioned JQuery library worked just fine for me. Thanks! – plang Dec 10 '12 at 10:42
Thank you for the plugin, it worked fine. – onimojo Dec 20 '12 at 18:01

9 Answers

up vote 90 down vote accepted

If the src is already set then the event is firing in the cache cased before you get the event handler bound. To fix this, you can loop through checking and triggering the event based off .complete, like this:

$("img").one('load', function() {
  // do stuff
}).each(function() {
  if(this.complete) $(this).load();
});

Note the change from .bind() to .one() so the event handler doesn't run twice.

share|improve this answer
Your solution worked perfect for me but I want to understand something, when this code "if(this.complete)" will run, after the image content loads or before? because as I can understand from this .each that you are looping on all $("img") and may be the image content is empty and the load will not happen. hmmmm, I think I have something missing, it will be nice if you can describe that is going on to understand it better. thanks. – Amr ElGarhy May 18 '11 at 0:23
Wowzers great stuff thanks! – pagewil Sep 6 '11 at 21:54
6  
Since your answer things have changed. There now is a small working plugin jQuery.imagesLoaded. They fix all the little browser quirks. – Lode Nov 10 '11 at 12:30
Works perfectly jQuery. What's the alternative of one and complete in Prototype (the library) ? – Steffi Apr 6 '12 at 8:31

A modification to GUS's example:

$(document).ready(function() {
    var tmpImg = new Image() ;
    tmpImg.onload = function() {
        // Run onload code.
    } ;

tmpImg.src = $('#img').attr('src');
})

Set the source before and after the onload.

share|improve this answer
Like @Gus's answer, this won't work for multiple images...and there's no need to set the src before the attaching the onload handler, once afterwards will suffice. – Nick Craver Oct 6 '10 at 21:38
@Nick The question doesn't say anything about multiple images... – Chuck Conway Oct 6 '10 at 21:42
3  
Sure it does, $("img") selects all <img> elements... – Nick Craver Oct 6 '10 at 21:44
@Nick Doh! I missed that. – Chuck Conway Oct 6 '10 at 21:47

Can I suggest that you reload it into a non-DOM image object? If it's cached, this will take no time at all, and the onload will still fire. If it isn't cached, it will fire the onload when the image is loaded, which should be the same time as the DOM version of the image finishes loading.

Javascript:

$(document).ready(function() {
    var tmpImg = new Image() ;
    tmpImg.src = $('#img').attr('src') ;
    tmpImg.onload = function() {
        // Run onload code.
    } ;
}) ;

Updated (to handle multiple images and with correctly ordered onload attachment):

$(document).ready(function() {
    var imageLoaded = function() {
        // Run onload code.
    }
    $('#img').each(function() {
        var tmpImg = new Image() ;
        tmpImg.onload = imageLoaded ;
        tmpImg.src = $(this).attr('src') ;
    }) ;
}) ;
share|improve this answer
You should try to attach the load handler before it's added, also this won't work but for one image, the OPs code works for many :) – Nick Craver Oct 6 '10 at 21:37
Thanks, I have added an updated version which I hope addresses these two issues. – Gus Oct 6 '10 at 21:56
#img is an ID not an element selector :) Also this.src works, no need to use jQuery where it isn't needed :) But creating another image seems like overkill in either case IMO. – Nick Craver Oct 6 '10 at 21:57

I can give you a little tip if you want do like this:

<div style="position:relative;width:100px;height:100px">
     <img src="loading.jpg" style='position:absolute;width:100px;height:100px;z-index:0'/>
     <img onLoad="$(this).fadeIn('normal').siblings('img').fadeOut('normal')" src="picture.jpg" style="display:none;position:absolute;width:100px;height:100px;z-index:1"/>
</div>

If you do that when the browser caches pictures, it's no problem always img shown but loading img under real picture.

share|improve this answer

I had this problem with IE where the e.target.width would be undefined. The load event would fire but I couldn't get the dimensions of the image in IE (chrome + FF worked).

Turns out you need to look for e.currentTarget.naturalWidth & e.currentTarget.naturalHeight.

Once again, IE does things it's own (more complicated) way.

share|improve this answer

Do you really have to do it with jQuery? You can attach the onload event directly to your image as well;

<img src="/path/to/image.jpg" onload="doStuff(this);" />

It will fire every time the image has loaded, from cache or not.

share|improve this answer

You can solve your problem using JAIL plugin that also allows you to lazy load images (improving the page performance) and passing the callback as parameter

$('img').asynchImageLoader({callback : function(){...}});

The HTML should look like

<img name="/global/images/sample1.jpg" src="/global/images/blank.gif" width="width" height="height" />
share|improve this answer

I just had this problem myself, searched everywhere for a solution that didn't involve killing my cache or downloading a plugin.

I didn't see this thread immediately so I found something else instead which is an interesting fix and (I think) worthy of posting here:

$('.image').load(function(){
    // stuff
}).attr('src', 'new_src');

I actually got this idea from the comments here: http://www.witheringtree.com/2009/05/image-load-event-binding-with-ie-using-jquery/

I have no idea why it works but I have tested this on IE7 and where it broke before it now works.

Hope it helps,

Edit

The accepted answer actually explains why:

If the src is already set then the event is firing in the cache cased before you get the event handler bound.

share|improve this answer

I was looking for the size of an image before i put it into the page. In my case i needed the original size (width, height) of the image and not the size it hat after rendering by the browser. Therefore i had an object and not a dom-node and i had to wait until it was fully loaded. A callback function solved this:

var newImg = new Image;
newImg.src = SOURCE;
newImgLoading = window.setInterval(function(){
    if (newImg.height!='undefined' && newImg.height!=0) { 
        // do some more stuff
    } 
}, 10); }
share|improve this answer
10ms is probably overkill + you got extra } at end + your setInterval would run forever... maybe you want clearInterval too. -1 for that until fixed, please reply if you make any edits. – Sampo Sarrala Oct 10 '12 at 21:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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