Bootstrap dropdown: events for the 'navbar-toggle'?

前端 未结 3 1792
长情又很酷
长情又很酷 2020-12-14 01:18

Do we have events for the navbar-toggle that appears when we are on the smaller screen?

For instance,

$(\'#myDropdown\'         


        
3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-14 01:26

    Using jquery you can test if something is visible using .is(':visible'). http://api.jquery.com/visible-selector/

    If you need its visibility to trigger something else you could look at implementing the jQuery Mutate plugin. This effectively monitors an element for a change in a property and then fires an event. http://www.jqui.net/jquery-projects/jquery-mutate-official/

提交回复
热议问题