Is it possible to make all three panels collapse and expand simultaneously with just one button?
<button data-toggle="collapse" data-target="#collapseOne-1,#collapseTwo-1,#collapseThree-1" ...></button>
<div id="#collapseOne-1" class="collapse in"></div>
<div id="#collapseTwo-1" class="collapse in"></div>
<div id="#collapseThree-1" class="collapse in"></div>
It's currently an issue where if one panel is already collapsed, it will expand and vice versa. But I want them all to expand or close together whenever the button is clicked.
Do you know of any solutions to achieve this functionality?