I am trying to change the class of a tab on the dashboard depending upon the page selected. I have 3 tabs in the dashboard like
<div>
<ul class="menu">
<li class="MenuDashboard"><a href="#" >Dashboard</a></li>
<li class="MenuSearch"><a href="#">Search</a></li>
<li class="MenuAccountSetup"><a href="#">Account Set up</a></li>
</ul>
</div>
Now I want to highlight the tab when I select that particular tab. By default the 'Dashboard' tab should be highlighted. I have a style class called "current" which highlights the tab. Please advise.