Created
November 28, 2012 02:42
-
-
Save moroya/4158703 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
| 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