Me auto respondo.
La solución es .next() ...
Código Javascript
:
Ver original$("td").each(function(){
if (parseFloat($(this).text()) <= 0 && !$(this).text().match(":")) {
$(this).css('color','#B901FC');
$(this).next().css('color','#B901FC');
}
});
Con jQuery es facilísimo hacerlo
Saludos