ok - I partially solved this by setting my default rows in this
instance to be white, and then using the following:

                $('#test').click(function() {
                        var theRow = $('#myRow td');
                        var origColor = $('#myRow td').css("backgroundColor");

                        $(theRow).css({backgroundColor: '#ff0'});
                        setTimeout(function() {
                                $(theRow).animate({backgroundColor: origColor}, 
1000);
                        }, 3000);
                });

However, row hover effects get disabled on the affected row after this
is run. So now I need to remove the inline style for background color
that the script ends with

<tr id="myRow"><td style="background-color: #FFF"> should get set to
something like <tr id="myRow"><td style="">


Reply via email to