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
You'll want to use this syntax:
$("span").fadeOut("slow").css("background-color", "#FFFF99");