I'm trying to delete element 'this' ,500ms after changing its class, but it does not work
$('.card').click(function() {
setTimeout(function(){
$(this).remove();
console.log('removed');
},500);
$(this).toggleClass("card card-used");
});
and HTML
<div class="card">asdasd</div>
I can see "removed" in my console log but it wasn't remove()