Skip to content

Instantly share code, notes, and snippets.

@moroya
Created November 28, 2012 02:42
Show Gist options
  • Select an option

  • Save moroya/4158703 to your computer and use it in GitHub Desktop.

Select an option

Save moroya/4158703 to your computer and use it in GitHub Desktop.
var img = $('<img/>').on('load', function(){
// 読み込めた時の処理
$(this).remove(); // GC
img = null;
}).on('error', function(){
// 読み込めなかった時の処理
$(this).remove(); // GC
img = null;
}).attr('src', '画像のパス');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment