I have the following markup:
<ul class="menubar">
<li><a href="home.php" title="Home">Home</a></li>
<li><a href="services.php" title="Services">Services</a></li>
<li><a href="aboutus.php" title="About Us">About Us</a></li>
<li><a href="contact.php" title="Contact Us">Contact Us</a></li>
</ul>
I need help figuring out how to add a class using Jquery or Javascript (preferably Jquery) according to the active page. Example, when on the "Home.php" page, I would like to add the class ".selected" to the active <a> tag and at the same time add the class ".none" to all the other links.
Therefore, when being on the "home.php" page the code should look like this:
<ul class="menubar">
<li><a href="home.php" class="selected" title="Home">Home</a></li>
<li><a href="services.php" class="none" title="Services">Services</a></li>
<li><a href="aboutus.php" class="none" title="About Us">About Us</a></li>
<li><a href="contact.php" class="none" title="Contact Us">Contact Us</a></li>
</ul>
According to the way the rest of the code works, I need the class to be assigned to the <a> tag and not to the entire <li> item. Any ideas are appreciated.