Allow click on twitter bootstrap dropdown toggle link?

后端 未结 8 1373
眼角桃花
眼角桃花 2020-11-28 04:27

We have setup the twitter bootstrap dropdown to work on hover (as opposed to click [yes we are aware of the no hover on touch devices]). But we want to be able to have the m

8条回答
  •  自闭症患者
    2020-11-28 04:48

    You could use a javascript snippit

    $(function()
    {
        // Enable drop menu clicks
        $(".nav li > a").off();
    });
    

    That will unbind the click event preventing url changing.

提交回复
热议问题