I have a menu on my page that has a set of submenus that will be displayed on h-over.
I planned for the menu to change color dynamically every time I hover over it.
I like to add a set of colors.
for instance
#cccccc; #999999; #474747; #4c4c4c;
These colors should change dynamically when I'm in, I tried to use some jquery for example:
$('menu').css('backgroundImage', 'url(something.gif)');
but my plan is to do this only with css. Any idea for this?
source share