I am facing a challenge with styling nested tables on my page. Specifically, I need to apply styles exclusively to odd rows of the top level table without affecting the tables within it.
Unfortunately, I am unsure about how to accomplish this task. My initial thought is to use jQuery and write a code snippet like this:
$(".topTable tr:odd td").addClass(".rowColor");