I'm using color plugin (link to google cache, jquery.com currently off) to handle background color animations.
$(".navigation a").hover(
function(){
$(this).stop().animate({backgroundColor: black});
},
function(){
$(this).stop().animate({backgroundColor: green});
$(this).hide();
}
);
Need to hide current link when animation is finished. Now it hides at once, on mouseout()
.
What is the solution?