Determine when image finished loading with JavaScript or jQuery:
How can I detect with JavaScript or jQuery when an image has finished loading, be it from the server or the browser cache?
I want to load various images in the same <img/>
tag and detect when the loading of a new imag开发者_高级运维es has finished.
$('img').on('load', function() {
// do whatever you want
});
The onload
document's event will fire only after all the elements, images included, have fully loaded.
The onload
<img>'s event will fire after the single image have fully loaded.
So you can attach a listener to these events, using jQuery objects or DOM's addEventListener (and IE's attachEvent)
Well, this is quite an old thread I came across yesterday. I'm using backbone.js and require.js and resizing my layout always caused problems with views that contain images.
So, I needed a way to know when the last image has finished loading to resize the layout. All, mentioned solutions above didn't work in my case. After some hours of more investigation I found the ultimate solution that is working:
http://desandro.github.com/imagesloaded/
Hope that helps others as well.
I think this looks a bit cleaner
$('img').load(function() {
// Your img has finished loading!
});
For a more thorough image load detection, including images loaded from cache, try this: https://github.com/paulirish/jquery.imgloaded
From a very similar question Official way to ask jQuery wait for all images to load before executing something and just like Pikrass says:
With jQuery, you use
$(document).ready()
to execute something when the DOM is loaded and$(window).load()
to execute something when all other things are loaded as well, such as the images.
Here are two examples:
##DOM
jQuery(document).ready(function(){
console.log('DOM ready');
});
##Images / Everything Else
jQuery(window).load(function(){
console.log('all other things ready');
});
You should be able to confirm in your console:
Everyone mentioned that the event should be fired before set to the src.
But if you don't want to worry about it, you can use the oncomplete
event (will be fired even with cached images) to fire onload
, like this:
$("img").one("load", function() {
// do stuff
}).each(function() {
if(this.complete) $(this).load();
});
Using jQuery you don't have to worry about backward compatibility (eg: img.height>0
in IE
)
精彩评论