Skip to content

Instantly share code, notes, and snippets.

@siriokun
Created May 10, 2014 00:10
Show Gist options
  • Save siriokun/8a11059e5f9f018b5a9b to your computer and use it in GitHub Desktop.
Save siriokun/8a11059e5f9f018b5a9b to your computer and use it in GitHub Desktop.
//jQuery
$("#swapImg")
.attr("src", "dynamic-image-url.jpg")
.one("load",function(){
//image has loaded
})
.each(function(){
if(this.complete) //trigger load if cached in certain browsers
$(this).trigger("load");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment