Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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"
    });
});
share|improve this question
1  
sorry about my messy code in the question, im still a bit of a fail when it comes to posting questions – Captain Alex Aug 30 '11 at 2:19
1  
I cleaned it up. Check out jsbeautifier.org. – user113716 Aug 30 '11 at 2:20
how 'bout for cleaner code... set a variable == @(this).text().toLowerCase() then just call indexof() on it – tekknolagi Aug 30 '11 at 2:21
1  
One issue I see is that #1, #2, etc... are not valid CSS IDs. An id cannot start with a number, it must start with a letter. – jfriend00 Aug 30 '11 at 2:21
1  
You should probably consider another strategy for selecting the DIV to animate, such as storing the ID in a rel in the SPAN and 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, like content1, content2, etc... – Jared Farrish Aug 30 '11 at 2:22
show 7 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.