jQuery で AJAX による単純なロード コンテンツを作成しました。
$('.bar a[rel]').live('click', function() {
if($('.modal-'+ $(this).attr('rel')).length == 0) {
$.ajax({
url: 'users/'+ $(this).attr('rel'),
success: function(data) {
$('header + .container').children().animate({
'height': 0,
'padding': 0,
'opacity': 0
}, 500, function() {
$(this).remove();
$(data).hide().appendTo('header + .container').fadeIn(1000);
});
}
});
}
return false;
});
このコードがコンテンツ (appendTo) を 2 回ロードするのはなぜですか?