重複の可能性:
ajaxの更新されたdivをフェードインさせる
AJAX呼び出しのコンテンツを自分のページに表示したいのですfadeIn
が、このコードを使用する$('#sub_container').html(content).fadeIn();
と、アニメーションの速度を超低速に設定しても機能しません(slow(5000)
)
$('.create').click(function(){
loadingimg();
document.title = 'Create Message';
$.ajax({
url: 'create.php',
dataType: 'html',
success: function(content){
$('#sub_container').html(content);
// $('#sub_container').html(content).fadeIn(); <- Fails
}
});
});