Good night, I would like a help ... I am trying to use the collapse of boostrap 3.3 in a row of a table, the code looks like this:
<table>
<thead>
<tr>
<th>header</th>
<th>header</th>
<th>header</th>
<th>header</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<a class="btn btn-xs btn-block btn-default" data-toggle="collapse" data-target=".child" aria-expanded="false" aria-controls="collapseExample">
<i class="fa fa-caret-right" aria-hidden="true"></i>
</a>
</td>
<td>data</td>
<td>data</td>
<td>data</td>
</tr>
<tr class="collapse child">
<td>
</td>
<td>data</td>
<td>data</td>
<td>data</td>
</tr>
</tbody>
</table>
The problem is that the collapse animation is not working, does anyone know how to solve it?