I have this fiddle: http://jsfiddle.net/tatygrassini/tZBXe/

Horizontal dropdown menu with a 1 level deep submenu. All menu links with :hover styles.

Once parent clicked, submenu slides down, you hover out, submenu hides back, OK so far.

I want to give the parent Add/Remove my CSS class a CSS class (.focus), when clicked to change its background color to fake a "focus" state.

In the jsfiddle, when you click on the Add/Remove my CSS class, you'll see it changes its background-color to red for a second, this is because of the :active CSS style.
So, even when you hover on the submenu links, the parent link remains in "focus" state, but, when you hover out, the "focus" CSS class will be removed to achieve its normal state CSS.

link|improve this question
2  
What's your question? – Abdul Munim Nov 22 '11 at 15:11
feedback

1 Answer

up vote 2 down vote accepted

here's an updated code: http://jsfiddle.net/manuel/tZBXe/2/ I've added

$(this).addClass("focus");

and in the hover function

$("a", this).removeClass("focus");
link|improve this answer
nice and clean :) +1 – mprabhat Nov 22 '11 at 15:17
You rock, Manuel!! – Taty Nov 23 '11 at 13:54
feedback

Your Answer

 
or
required, but never shown

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