Resources: jQuery / Javascript
Check jQuery isn't currently animating
27 September 2012
Prevent ugly fadein-fadeout-fadein loops when you quickly hover and exit with this nifty code. It basically checks to make sure we’re not currently animating before it applies a new animation filter
$(this).filter(':not(:animated)').animate({ opacity : 1 }, 200);