I have a jQuery script that applies a CSS style to an HTML table row when the user clicks on a row link:
$(this).closest('tr').css("background-color", "silver");
Is there a way to soften this color change effect, such as by gradually fading in a hidden object?