I'm struggling to figure this out. My goal is to create a functionality where clicking on a Bootstrap linked-list item will expand it in an accordion style to reveal additional text.
Here's the code that I have so far: http://www.bootply.com/6zXrStZ2o3
<div class="container">
<h1>Bootstrap 3 List Groups</h1>
<div class="list-group">
<a href="#" class="list-group-item">
Linked item in .list-group
</a>
<a href="#" class="list-group-item">Linked item in .list-group with Chevron and Badge
</a>
</div>
</div>
Does anyone know how I can implement a feature where clicking on the title of a linked list item expands it to display more content?