Possible Duplicate:
jQuery animate backgroundColor
http://johanberntsson.se/dev/fysiosteo/
If you hover the menu, i would like the main menu to fade out its backbgroundcolor to #fff over 1 second. But i cant get it to work. My code:
$('#menu-main-menu').children('li').mouseout(function () {
$(this).css('background', '#AFFFAF').animate({ 'background' : '#fff' }, 1000);
});
I never use animate(), so ive probably missed something obvious. Thanks.