I've found a lot of similar questions but unfortunately none really help with my problem...
I have a navigation list
<div class="nav-container">
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="contact.php">Contact</a></li>
</ul>
</div>
I want to give a class to the anchor tag (not the 'li') when I click on it. So far I have:
$(".nav-container li a").click(function(){
$('.nav-container li a').removeClass('nav-active');
$(this).addClass('nav-active');
})
It seems to add the class for a split second and then disappear.
I've managed to get the class to apply by using 'return false;' at the end but it stops the actual links from working all together.
I'm guessing one is cancelling the other out and it just needs some way to stop it... not quite sure how you do that (sorry - new to jQuery)
Thanks in advance to anyone who can sort my issue out :)