How can i return element to its position after execute animated.css animations? I use this code but it just executed once and then classes didnt remove for next time
$(".stitch")
.hover( function () {
$(this).addClass("animated hinge");
} )
.delay( 5000 )
.queue( function () {
$(this).removeClass("animated hinge").dequeue();
} );
I tried dequeue and next but not working. Thank you in advance for any help.