Remaining on same tab after refresh using bootstrap

0
Well, I'm using tabs with bootstrap, but whenever I give a refresh to fetch information on this tab, it switches to the first one, coming out of 3 ABA, does anyone know how to solve this with Botstrap?

   <ul class="nav nav-tabs">
    <li class="active"><a data-toggle="tab" href="#aba">ABA</a></li>
    <li><a data-toggle="tab" href="#aba1">ABA 1</a></li>
    <li><a data-toggle="tab" href="#aba2">ABA 2</a></li>
   </ul>

The Divs

<div class="tab-content">
 <div id="aba" class="tab-pane fade in active">ABA</div>
 <div id="aba1" class="tab-pane fade in active">ABA 1</div>
 <div id="aba2" class="tab-pane fade in active">ABA 2</div>
</div>

I have a button in Tab 2 and I click on it to fetch information, it returns to the first one, does anyone have any idea how to solve this in Bootstrap?

    
asked by anonymous 22.11.2018 / 15:21

0 answers