My bootstrap accordion is not functioning properly, the animation seems to be broken. How can I fix it?
I suspect that it might be due to using an outdated version of jQuery or because the theme developers implemented a custom solution. The end result is that the animation is not working correctly.
I even tried integrating another accordion, but unfortunately, it does not work at all.
This is what is currently partially functional:
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
Collapsible Group Item #1
</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
(content here)
</div>
</div>
</div>
(additional panels go here)
</div>
I'm following Bootstrap's examples, but the animation is still glitchy. How can I achieve smooth functionality like the Bootstrap example without updating my jQuery and risking breaking other plugins on my site?
Thanks for your help!