I\'m trying to fade the background-color of a span tag using JQuery to emphasize when a change has occured. I was thinking the code would be someting like the following ins
It can be done with the color animation plugin. You'd then do something like
$('span').animate({'backgroundColor' : '#ffff99'});