jQueryを使用して画像を読み込んで次々とフェードしようとしています。問題は、1 つの画像しか読み込まないことです。この問題を解決するにはどうすればよいですか?
$('input[id*="friend_bar"]').click(function () {
FB.ui({
method: 'apprequests',
message: 'Try this awesome application?',
exclude_ids: '<?php echo $exclude_ids ?>'
}, function (response) {
if (response) {
$.post('invite_suck.php', {
'response': response.to
}, function (data) {
for (var index in response.to) {
var ID = response.to[index];
$("#friend_bar").first().fadeOut(function () {
$(this).load(function () {
$(this).fadeIn();
});
$(this).replaceWith('<div align=\"center\"> <input type=\"image\" src=\"https://graph.facebook.com/' + ID + '/picture/?type=square\" height=\"50\" width=\"50\" align=\"center\">').attr("id", "friend");
});
}
});
}
else {
alert('Request was not sent');
}
});