I have a very simple animation, were I have a tab at the side of the screen and if you click it, it will increase size. But it´s only working on IE, here is the code:
U can try sumthin like this:
<script>
$(function(){
$("#a-tab > *").focusin(function(){
$("#a-tab").stop().animate({width:'320px'});
});
$("#a-tab > *").focusout(function(){
$("#a-tab").stop().animate({width:'10px'});
});
});
</script>
Just add .stop() before .animate(). I hope that works for u :)