Code below I have located under my MasterPage. Once one of the tabs get clicked for example “Contact Us” I would like to set the li class to active. I cannot figure out how to do this. Any help would be great.
<div id="navcontainer">
<div class="section-wrapper">
<ul class="links">
<li class="">
<a href="">Our Company</a>
</li>
<li class="">
<a href="Contact%20Us/Default.aspx">Contact Us</a>
</li>
<li class="">
<a href="">Tab 3</a>
</li>
<li class="">
<a href="">Tab 4</a>
</li>
<li class="">
<a href="">Tab 5</a>
</li>
</ul>
</div>
</div>
1 Answer