I have bootstrap table with accordion
I need hide by default second row
But when I clicked the table moves
How to make the animation and opening smooth, without shifting?
<table class="table table-hover">
<tbody>
<tr data-bs-toggle="collapse" href="#collapse">
<td>Info</td>
<td>Some more Info</td>
<td>And some Info</td>
</tr>
<tr id="collapse" class="collapse">
<td>Hidden by default</td>
<td>Hidden by default</td>
<td>Hidden by default</td>
</tr>
</tbody>
I purpose to you to use jQuery fadeToggle() and selector attribute
If you want to use this, you just need to remove
data-bs-toggle="collapse"from your first tr