Answers for "bootstrap accordion hide by default"

1

bootstrap accordion stop from closing

You can remove data-parent="#accordion" from each panel which enables you to 
open a panel without closing another at the same time.

reference : https://stackoverflow.com/questions/31982638/how-to-prevent-accordion-to-close-while-clicking-on-sibling-divs
Posted by: Guest on September-05-2020
0

bootstrap hide show toggle collapse

<p>
  <a class="btn btn-primary" data-toggle="collapse" href="#collapseExample" role="button" aria-expanded="false" aria-controls="collapseExample">
    Link with href
  </a>
</p>

<div class="collapse" id="collapseExample">
  <div class="card card-body">
    Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident.
  </div>
</div>
Posted by: Guest on May-29-2021

Code answers related to "bootstrap accordion hide by default"

Browse Popular Code Answers by Language