Skip to content

Instantly share code, notes, and snippets.

@barneycarroll
Created November 18, 2013 14:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save barneycarroll/7529113 to your computer and use it in GitHub Desktop.
Save barneycarroll/7529113 to your computer and use it in GitHub Desktop.
Quirk-proof promise for image loading using jQuery's Deferred and events interfaces. imagePromise( url ).then( function( img ){ /*...*/ } )
// Create a Promise for loading an image!
// Basically taking out the useful, tricky, and heavily refined bit from
// http://desandro.github.io/imagesloaded/
function imagePromise( src ){
var deferred = $.Deferred();
var img = new Image();
function resolve(){
// Resolution callbacks receive the image, which you can then inject into the DOM
// to avoid triggering an extra HTTP request in IE
return deferred.resolve( img );
}
// Resolution events
$( img ).on( {
error : deferred.reject,
load : resolve
} );
// Attach the source afterwards, since DOM synchronicity is weird:
// A cached image will sometimes load or error on assignment
img.src = src;
// ...But sometimes cached images never fire load!
// In this case they would already be in the DOM at this point. We need to infer it:
if ( img.complete && img.naturalWidth !== undefined ) {
// And then use setTimeout to resolve asynchronously (otherwise promise is broken!)
setTimeout( resolve );
};
return deferred.promise();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment