So I have a piece of code. The purpose is to play a selected animation from Animate.css on click.
The code
$(\".conta
$(".container>parent").click(function() { $('.element').css({ 'animation': 'fadeInUp .2s', '-webkit-animation': 'fadeInUp .2s' }); setTimeout(function(){ $('.element').removeAttr('style'); },300); });