I'd like to add row highlighting on hover using on CSS that will work in Internet Explorer. I have tried the following:
#tableId tr:hover td { background-color:#f00; }
This seems to work in Opera, Firefox, and Safari, but not in IE.
Is there a solution or is the only solution JavaScript?