Using jQuery and not CSS, is it possible to alternate row colors between records? If so can anyone provide a short code script on how to accomplish this?
Try this:
$("tr:even").css("background-color", "#eeeeee"); $("tr:odd").css("background-color", "#ffffff");