Last active
          August 15, 2016 08:50 
        
      - 
      
 - 
        
Save aFarkas/15de1cea3acd6602a71e to your computer and use it in GitHub Desktop.  
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /** | |
| * How to: | |
| * $('div.container').imagesLoaded(function(){console.log('all images loaded in .container');}); | |
| * In case you need to support IE8, you need to use HTML5shiv **and** need to modify jQuery the following way: | |
| * https://github.com/jquery/jquery/commit/a9533893b9e5e9a248139f5794c5d6099382cf14 | |
| */ | |
| (function($){ | |
| 'use strict'; | |
| $.fn.imagesLoaded = (function(){ | |
| var imageLoaded = function (img, cb, delay){ | |
| var timer; | |
| var isReponsive = false; | |
| var $parent = $(img).parent(); | |
| var $img = $('<img />'); | |
| var srcset = $(img).attr('srcset'); | |
| var src = $(img).attr('src'); | |
| var onload = function(){ | |
| $img.off('load error', onload); | |
| clearTimeout(timer); | |
| cb(); | |
| }; | |
| if(delay){ | |
| timer = setTimeout(onload, delay); | |
| } | |
| $img.on('load error', onload); | |
| if($parent.is('picture')){ | |
| $parent = $parent.clone(); | |
| $parent.find('img').remove().end(); | |
| $parent.append($img); | |
| isReponsive = true; | |
| } | |
| if(srcset){ | |
| $img.attr('srcset', srcset); | |
| if(!isReponsive){ | |
| $img.appendTo(document.createElement('div')); | |
| } | |
| isReponsive = true; | |
| } else if(src){ | |
| $img.attr('src', src); | |
| } | |
| if(isReponsive && !window.HTMLPictureElement){ | |
| if(window.respimage){ | |
| window.respimage({elements: [$img[0]]}); | |
| } else if(window.picturefill){ | |
| window.picturefill({elements: [$img[0]]}); | |
| } else if(src){ | |
| $img.attr('src', src); | |
| } | |
| } | |
| }; | |
| return function(cb){ | |
| var i = 0; | |
| var $imgs = $('img', this).add(this.filter('img')); | |
| var ready = function(){ | |
| i++; | |
| if(i >= $imgs.length){ | |
| cb(); | |
| } | |
| }; | |
| $imgs.each(function(){ | |
| imageLoaded(this, ready); | |
| }); | |
| return this; | |
| }; | |
| })(); | |
| })(jQuery); | 
This doesn't seem to work in IE11 ? Can you replicate ?
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
            
Handy script! But I noticed that it screws responsive images using
srcsetandsizesbecause it ignores thesizesattribute. This leads to the largest source being loaded. Works fine when thesizesvalue is added before applying thesrcsetto the<img>element created.https://gist.github.com/hatsumatsu/b946fee531aa32a17808