jQuery toggle menu dropdown
        Posted  
        
            by 
                Seong Lee
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Seong Lee
        
        
        
        Published on 2013-10-17T20:51:13Z
        Indexed on 
            2013/10/17
            21:54 UTC
        
        
        Read the original article
        Hit count: 269
        
I am working on a menu navigation that has parent horizontal bar as static and a vertical accordion child menu that interacts with the parent.
I have them working fine except one part where I want to toggle show() and hide() child menu when clicked on the same parent menu item.
I've looked at toggle() jQuery API but couldn't get it working properly.
The following is only a script for parent part which I got rid of toggle() for now.
$(function () {
    $('#mainMenu > ul > li > a').click(function () {
        $('#mainMenu li').removeClass('active');
        $(this).closest('li').addClass('active');
        if ($(this).text() == "1st click") {
            $('#subMenu > ul').siblings().hide();
            $('#subMenu > ul:nth-child(1)').show();
        } else if ($(this).text() == "2nd click") {
            $('#subMenu > ul').siblings().hide();
            $('#subMenu > ul:nth-child(2)').show();
        }
    });
});
The Full code that isolates the problem is available here
© Stack Overflow or respective owner