Bootstrap Collapse - Expand All

后端 未结 7 1222
北海茫月
北海茫月 2020-12-31 04:20

I\'ve implemented Bootstrap 3 Collapse. The client wants all of the target blocks to expand when any one of the heading links is clicked. I have tried to implement a modifie

7条回答
  •  臣服心动
    2020-12-31 05:20

    I got some help offline on this question. The script to use is

    $('#accordion .panel-default').on('click', function () {
        $('#accordion .panel-collapse').collapse('toggle');
    });
    

    and this is the JSFiddle example http://jsfiddle.net/gtowle/Vq6gt/1/

提交回复
热议问题