hey guys this thing drives me crazy. I defined in my stylsheet
ul#menuCnt li a {
color:"red";
}
If i want to make a hover effect, using jquery this won't change any color :(
$("ul#menuCnt li a").hover(function() {
$(this).addClass("brown");
}, function() {
$(this).removeClass("brown");
});
I'am really confused. If I don't define a color in my css stylesheet the hovereffect works.
Hope you can help me. You guys helped me so much by learning jquery and css :)
Thank you!