いくつかのdivをfadeOutにしてから、削除しようとしています。
$("article.articles .thumb a").click(function() {
$(this).parent().parent().addClass("selected");
$("article.post").not(".selected").fadeOut(500).delay(1500).remove();
$('#stream').isotope('reLayout');
});
ただし、divはフェードせずにすぐに削除されます。
私は何が間違っているのですか?