How to hide Twitter Bootstrap dropdown

后端 未结 24 2283
悲&欢浪女
悲&欢浪女 2020-12-13 03:37

This is getting annoying — when I click on an item in a Bootstrap dropdown, the dropdown doesn\'t close. I have it set up to open a Facebox lightbox when you click the dropd

24条回答
  •  萌比男神i
    2020-12-13 03:52

    The selected answer didn't work for me, but I'm thinking it's because of the newer version of Bootstrap. I ended up writing this:

    $('.btn-navbar').addClass('collapsed');
    $('.nav-collapse').removeClass('in').css('height', '0');
    

    Hopefully that's helpful to someone else in the future.

提交回复
热议问题