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
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/