I have a bootstrap 3 accordion
<dl class="panel-group col-lg-10 col-lg-offset-1" id="product-list">
<dt class="panel-heading col-lg-12">
<a data-toggle="collapse" data-parent="product-list" href="collapseOne">
<h3 class="panel-title">
Heading Content
</h3>
</a>
</dt>
<dd id="collapseOne" class="product-details panel-collapse collapse col-lg-12">
Collapsable Content
</dd>
</dl>
This markup is working in that the accordion opens and closes properly. However, it is scrolling to the anchor point on open and close of the DD. This is not my desired behavior.
I have tried changing the anchor tags to divs, but that breaks my accordion. The different collapsables will only open if I put in an anchor to click.