NugadadeJar
New Member
I have the default link color active when you enter the site but I can't seem to get it to remove off active when mouse clicks on another link and the new current page is now active. here is my code.JS\[code\]$("a").on("click", function() { $(".active").removeClass("active"); });\[/code\]CSS\[code\].active{ color: #ffff00 !important; }a { text-decoration: none; z-index: 5; font-family: arial, "Trebuchet MS"; cursor: pointer; color: #2777A3; }\[/code\]HTML\[code\]<a href="http://www.pro.com/" target="_self" class="active">Home</a>`\[/code\]