I'm using the following to stripe rows:
$(".stripeMe tr:even").addClass("alt");
I have a table with some rows. To mark the rows for the user I set one (or more rows) to have
style="background-color: red;"
Is there a way to continue to use my existing way of striping rows yet leave that one row different? I want to say "Add the class alt to all even rows except when I tell you not to"