hi everyone,
#menu ul li { font-weight:normal;}
#menu ul li.selected{ font-weight: bold;}
page------------------
<li><%= Html.ActionLink("About", "Index", "About")%></li><li><%= Html.ActionLink("Contact Us", "Index", "Contact")%></li>
I want to add selected class when i click any <li> so font can be bold.
any idea ?
View Complete Post