Если ничего не работает, вот небольшая хитрость:
Вы можете использовать добавление и удаление классов CSS из jquery, как показано ниже:
// Firstly, remove the "active" class from div panel and <li> tag
$('#firstTab, #firstTabDiv').removeClass('active');
Also, remove the "in" class from div tag in which your panel resides
$('#firstTabDiv').removeClass('in');
Then add same class which you removed in the div and panel in which you want
to get automatically select
$("#thirdTab, #thirdTabDiv").addClass('active');
$("#thirdTabDiv").addClass('in');
<li id='firstTab' class="active">
<a href="#firstTabDiv" data-toggle="tab">
First Tab
</a>
</li>
<li id='secondTab' class="active">
<a href="#secondTabDiv" data-toggle="tab">
Second Tab
</a>
</li>
<li id='thirdTab' class="active">
<a href="#thirdTabDiv" data-toggle="tab">
Third Tab
</a>
</li>
Таким образом, вы сможете автоматически отображать вкладку при загрузке.