bootstrap tab panel example
Example 1: tabs bootstrap 3
...
...
...
...
Example 2: bootstrap 4 tab panel
...
...
...
Example 3: bootstrap tabs
Example 4: bootstrap open tab from link data-toggle="tab"
$(document).ready(function(){
activaTab('aaa');
});
function activaTab(tab){
$('.nav-tabs a[href="#' + tab + '"]').tab('show');
};