so heres the exact problem. when this script gets activated by the mouseenter, it works perfectly for the first animation of all the .nav_drop(#1,#2,#3,#4) but once I mouseleave and try to mouseenter again, only the animation for the first one works, even if i hover over "#2", "#1" will animate, "#3", "#1" still animates. so im assuming it must be something to do with the mouseleave. any help would be appreciated.
$(".nav_btn").mouseenter(function () {
$(this).animate({
height: "25px",
bottom: "0px"
}, 400);
if ($(this).text().toLowerCase().indexOf("home") == 0) {
$("#1").animate({
height: "50px"
})
}
else if ($(this).text().toLowerCase().indexOf("about") == 0) {
$("#2").animate({
height: "50px"
})
}
else if ($(this).text().toLowerCase().indexOf("contact") == 0) {
$("#3").animate({
height: "50px"
})
}
else if ($(this).text().toLowerCase().indexOf("portfolio") == 0) {
$("#4").animate({
height: "50px"
})
}
else($(this).clearqueue());
});
$(".nav_btn").mouseleave(function () {
$(this).animate({
height: "20px",
bottom: "-5px"
}, 300);
$(".nav_drop").animate({
height: "0px"
});
});
@(this).text().toLowerCase()then just callindexof()on it – tekknolagi Aug 30 '11 at 2:21relin theSPANand calling it on mouse enter. You don't need all those lines of code for each animation. And jfriend00 has a good point; prepend the ID with a text value that matches the display DIV's ID, likecontent1,content2, etc... – Jared Farrish Aug 30 '11 at 2:22