I have a bootstrap nav pills sample here drawn as,
<ul class="nav nav-pills nav-stacked">
<li class="active"><a data-toggle="pill" href="#sec1"><b>Section 1</b></a></li>
<li><a data-toggle="pill" href="#sec2"><b>Section 2</b></a></li>
<li><a data-toggle="pill" href="#sec3"><b>Section 3</b></a></li>
</ul>
I can go to next tab once user clicks on next button inside the tab content by using jquery as given here. Is there any other simplest way rather than this example using angularjs or any other methods?