Here is my html:
<!-- Navigation -->
<nav>
<ul>
<li><a href="#">Products</a></li>
<li><a href="#">Gallery</a></li>
<li><a href="#">Guestbook</a></li>
<li><a href="#">Contacts</a></li>
<li><a href="#">Help</a></li>
<li><a id="cart" href="#"><span class="glyph general">2</span></a></li>
</ul>
</nav>
and i want to create jQuery hover effect on all but last anchors with purple background and the last child with id="cart" red background and here is my jquery:
<script>
$(function () {
$("nav ul li a:not(#cart)").hover(
function (){
$(this).hide().css("background-color","#6e0069").fadeIn(500);
},
function(){
$(this).css("background-color","rgb(255,255,255)");
}
);
})
how to add same function but for the last element with red background?
hover(), not access those elements with a purple background. And:visitedlinks tend to have purplecolornotbackground-color. – David Thomas Aug 19 '12 at 8:29