How can i switch tabs with the links?
This is my current state
<div class="tabbable-panel">
<div class="tabbable-line">
<ul class="nav nav-tabs">
<li class="active">
<a href="#tab_below_1" data-toggle="tab">Home</a>
</li>
<li class="">
<a href="#tab_below_2" data-toggle="tab">Sources</a>
</li>
<li>
<a href="#tab_below_3" data-toggle="tab">Contact Us</a>
</li>
</ul>
</div>
</div>
I can switch between tabs just fine but when i try to make it so that the href lead to another link, it doesn't work. when i change
<a href="#tab_below_1" data-toggle="tab">Home</a>
to
<a href="mysite.com/home" data-toggle="tab">Home</a>
it doesn't work. but then i tried removing the data-toggle
and it opens the link but it doesn't show that the tab is active.