Bootstrap v2 Dropdown Navigation not working on Mobile Browsers

前端 未结 14 1184
遥遥无期
遥遥无期 2020-11-28 06:22

I am having an issue with the Bootstrap menu dropdowns on mobile devices (Bootstrap 2). A similar question was asked here with dropdown buttons, however the answer for that

14条回答
  •  南笙
    南笙 (楼主)
    2020-11-28 06:37

    This seems to work without any issues. The class "open" already exists with bootstrap and should be working, but for some reason it isn't. This code forces it to run accordingly. :)

        jQuery(document).ready(function($) {
        $("li.dropdown").click(function(e){
            $(this).toggleClass("open");
            });
        });
    

提交回复
热议问题