Is it normal that
$("#foo a:hover")
does not select anything?
I can't use hover cause I need this selector to do that :
$("#foo a:hover").css("color", mycolor);
So I wonder if something like
$("#foo").css("a:hover color", mycolor);
exist?
Et What about visited (pseudo class)?