In a Master page, I have this....
<ul id="productList">
<li id="product_a" class="active">
<a href="">Product A</a>
</li>
<li id="product_b">
<a href="">Product B</a>
</li>
<li id="product_c">
<a href="">Product C</a>
</li>
</ul>
I need to change the class of the selected list item... When 'Product A' is clicked, it gets the 'active' class, and the others get none. When 'Product B' is clicked it gets the 'active' class, and the others get none. I am trying to do it in the Home Controller, but I am having a hard time gaining a refference to the page or any of its elements.