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
|
I want to do:
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 |
|||||||||
|
|
If the
Note the change from |
|||||||||||
|
|
A modification to GUS's example:
Set the source before and after the onload. |
|||||||||||
|
|
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:
Updated (to handle multiple images and with correctly ordered onload attachment):
|
|||||||
|
|
I can give you a little tip if you want do like this:
If you do that when the browser caches pictures, it's no problem always img shown but loading img under real picture. |
||||
|
|
|
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. |
|||
|
|
|
Do you really have to do it with jQuery? You can attach the
It will fire every time the image has loaded, from cache or not. |
|||
|
|
|
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
The HTML should look like
|
|||
|
|
|
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:
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, EditThe accepted answer actually explains why:
|
|||
|
|
|
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:
|
|||
|