I have this code on my site:
$(".name").hover(
function() { $(".kyle_hover").stop(true, true).fadeIn('slow'); },
function() { $(".kyle_hover").stop(true, true).fadeOut('slow'); }
);
But I have about 4 of these on top of each other, they are hidden and appear when hovered and disappear when left as expected, but the .stop
method isn't doing what I exepct.
When you hover over the titles quickly, they all stack up on top of each other (as they are built into the HTML) but I want the animation to complete before starting the next one, have I misunderstood stop?
Thanks.