success
要素を動的に作成し、Ajaxコールバックで 2 秒の遅延後にフェードアウトさせたいと考えています。
success: function(response){
if(response == "success")
$("#main").prepend("<div class='success'>...</div>");
else
$("#main").prepend("<div class='error'>"+response+"</div>");
window.setTimeout(
function(){
$(".success, .error").fadeOut()
}, 2000);
}
しかし、うまくいきません。