This is probably an easy solution but Im not getting it. So I have a one page site im working on a I have a jquery .click() function that changes the color of the navigation. I also have a .hover() function that also changes the color. The hover function works just fine until one of the navigation is clicked. Then the hover function stops working. here is my code

$(document).ready( function() {

$('nav a').click(function() {
$('nav a.lightGrey').css({color:'#888'});
$('nav a.darkGrey').css({color:'#555'});
$(this).css({color:'#0cf'});
});


$('nav a').hover(
function() {
$(this).addClass('hover')
},
function() {
    $(this).removeClass('hover')
}
);
});

Suggestions?

link|improve this question

50% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Your inline styles set by the css()[docs] method override styles from classes, unless you give !important to a style in a class.

link|improve this answer
Thank you so much....duh! Wow I didnt even think about that – Devender Jun 28 '11 at 15:45
@Devender: You're welcome. – user113716 Jun 28 '11 at 15:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.