I have some Boostrap tab action going. It has 3 tabs that loads content within the same page. This all works perfect!
However, on the 4th tab, I have a link that I want to open in a new window. Maybe I should not be using the tab function for this last element, but it looks best on the page and on mobile devices using it this way. Is there any way to link to an external link using bootstrap tabs?
<ul class="nav nav-tabs push" data-toggle="tabs">
<li class="active"><a href="#tab-1">Tab 1</a></li>
<li><a href="#tab-2">Tab 2</a></li>
<li><a href="#tab-3">Tab 3</a></li>
<li class="view_on_site"><a href="http://www.yahoo.com/" target="_blank">(View on Site)</a></li>
</ul>
Thanks for any help you can provide.