I came across this particular piece of code:
$("#customTable tr:nth-child(odd)").addClass("newColour");
It's purpose is to apply a new color to every odd row in the table.
Is there a way to achieve this using CSS alone, without relying on jQuery for implementation ?