Seguramente se pueda optimizar muchísimo... pero funciona:
Código Javascript
:
Ver original$(document).ready(function(){
var colours = new Array();
colours[0] = "#AAA";
colours[1] = "#CCC";
colours[2] = "#EEE";
var i=0;
var count=0;
$('table tbody').each(function(t){
$(this).children('tr').each(function(r){
$(this).css('background', colours[i]);
count++;
if(count==3){
i++;
count=0;
}
if(i==3){
i=0;
}
});
});
});