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
Try this it will help you.
$('.panel-collapse').removeData('bs.collapse') .collapse({parent:false, toggle:false}) .collapse('show') .removeData('bs.collapse') .collapse({parent:'#accordion', toggle:false});