I have such HTML:
<div class="parrent pull-left">
<ul class="nav nav-tabs nav-stacked">
<li class="active"><a href="#tab1" data-toggle="tab" class="analistic-01">TAB1</a></li>
<li class=""><a href="#tab2" data-toggle="tab" class="analistic-02">TAB2</a></li>
<li class=""><a href="#tab3" data-toggle="tab" class="analistic-03">TAB3</a></li>
</ul>
</div>
This is navigation for tabs. But it behaves something different: when I click on the link (for example: <a href="#tab1" data-toggle="tab" class="analistic-01">TAB1</a>
) - required tab is displayed. But there is not the anchor in url(#tab1
or #tab2
or #tab3)
. But I need it...
I am some new in fronted and I use ready template. So there are such frameworks:
jquery.js, bootstrap.min.js, js/jquery.isotope.min.js
What should I do??