I would like some help with a small issue... I have an html menu that I use on all my web pages, hence it is in my masterpage.master web page. The problem is that when a user clicks a menu choice I need to inject id="current" into the <LI> element... How can I do this?
<div id="header">
<ul>
<!-- CSS Tabs -->
<li><a href="page1.aspx">Admin</a></li>
<li><a href="page2.aspx">Inventory</a></li>
<li id="current"><a href="page3.aspx">Other</a></li>
</ul>
</div>
So for example when a user clicks the "Admin" item I want to inject the "id="current" into that <li> element and remove it from what ever <li> has it currently.
Thanks in advance