var html = "<div id='blah'>Hello stuff here</div>"
$("#mycontent").append(html).fadeIn(999);
これは機能しないようです。
コンテンツが追加されたときにクールな効果が欲しいだけです。
注: 「mycontent」全体ではなく、新しい「blah」div だけをフェードインさせます。
ベストアンサー1
$(html).hide().appendTo("#mycontent").fadeIn(1000);