Bootstrap: Collapse other sections when one is expanded

后端 未结 11 850
一向
一向 2020-11-27 06:28

I am making a Rails app, and am trying to achieve a particular functionality relating to Twitter\'s Bootstrap collapse. Bear with me as I explain it.

I currently hav

11条回答
  •  生来不讨喜
    2020-11-27 06:52

    If you are using Bootstrap 4, and you don't want to change your markup:

    var $myGroup = $('#myGroup');
    $myGroup.on('show.bs.collapse','.collapse', function() {
    $myGroup.find('.collapse.show').collapse('hide');
    });
    

提交回复
热议问题