I have a navigation bar on my website with a set of sub-menus that appear when hovered over.
I want to make the navigation bar change color dynamically each time it is hovered over.
Additionally, I would like to add a range of colors to choose from. For example:
#cccccc;
#999999;
#474747;
#4c4c4c;
These colors should change dynamically upon hovering. I have attempted some jQuery code like this:
$('menu').css('backgroundImage', 'url(something.gif)');
However, I am looking for a solution that only involves CSS. Any ideas?