In AngularJS, how can I create a simple tabbed navigation (switching content as tab is clicked)?
HTML:
<ul class="tabbed-navi">
<li class="active">
<a href="#one">Nav One</a>
</li>
<li>
<a href="#two">Nav Two</a>
</li>
<li>
<a href="#three">Nav Three</a>
</li>
</ul>
<div class="active">
Content One
</div>
<div>
Content Two
</div>
<div>
Content Three
</div>
I am looking for a simple, beginner-friendly example, not "download these other things and then..."