アニメーション「ホバー」を失うことなくリストからアイテムを削除しようとしています: jsfiddle
コード
$(window).load(function() {
$('.parent').hover(function() {
$('.child').css({
"width": "320px",
"height": "300px"
});
$(this).find('.child').dequeue().stop().slideToggle("fast");
});
$(".binda").click(function() {
$(this).remove()
});
});