I'm working on a slideshow where the captions are using animate.css to transition in from the left. The simplest way I've found to get this working is to .hide() all captions and then .show() with jQuery on the slide change.
In every browser the css animation is retriggered once an animating element is 're-added' to the page except for Firefox. Why is this?
// See fiddle
$('#reset').click(function(){
$('.animated').hide(0).show(0);
});