0

タブが上にスライドしてアクティブなクラスを削除し、開いているタブにアクティブなクラスを追加するときにこれが必要です

 $(document).ready(function(){
            $("#accordian li h3").click(function(){
                //slide up all the link lists
                $("#accordian ul .row").slideUp();
                //slide down the link list below the h3 clicked - only if its closed
                if(!$(this).next().is(":visible"))
                {
                    $(this).next().slideDown();

                }
            })
        })
4

3 に答える 3