I have created a unique jsfiddle with 20 boxes that I am trying to animate using the Animate.css plugin. The plugin can be found at daneden.me/animate.
My goal is to animate each box one after the other in a sequential manner, but I seem to be having trouble getting it to work properly. I suspect there may be an issue with how I am using the setTimeout function.
setTimeout(function(){
$('.slider').append('<li><div class="box animated bounceInRight"></div></li>');
},100);
If anyone could provide guidance on fixing this issue, I would greatly appreciate it.