初期表示時はこれでOK
$(window).load(function(){
/* 読み込み後の処理 */
});
これだとうまくいかなかった.
var img = $('.hoge'); //該当画像
img.bind('load', function(){
/* 読み込み後の処理 */
});
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
初期表示時はこれでOK
$(window).load(function(){
/* 読み込み後の処理 */
});
これだとうまくいかなかった.
var img = $('.hoge'); //該当画像
img.bind('load', function(){
/* 読み込み後の処理 */
});
Register as a new user and use Qiita more conveniently
Go to list of users who liked