mirror of
https://github.com/desandro/imagesloaded.git
synced 2026-01-14 08:57:54 -05:00
v1.2.1
imagesLoaded
A small jQuery plugin that triggers a callback after all the selected/child images have been loaded. Because you can't do .load() on cached images.
$('#my-container').imagesLoaded( function( $images ) {
// callback provides one argument, the jQuery object of child images
console.log( $images.length + ' images have been loaded in ' + this )
});
You can call imagesLoaded on a set of images as well.
$('.article img').imagesLoaded( myFunction );
Contribute
It ain't easy knowing when images have loaded. Every browser has its own little quirks that make this a difficult task to develop a cross-browser solution. Pull requests, testing, issues, and commentary are all highly encouraged (pleasepleaseplease) and very much appreciated.
Contributors
- View contributors
- ajp
- Oren Solomianik
Description
Languages
JavaScript
71.2%
HTML
25.9%
CSS
2.9%