I wrote a program, and would like to do thing (CSS/JavaScript) in nested table, but I met some problem.
I’d like to show something in the odd tr element in tbody, which is:
<tr>
<th>0</th>
<th>Match Key</th>
<th>Marketing</th>
</tr>
and
<tr>
<th>1</th>
<th>Match Key</th>
<th>Marketing</th>
</tr>
in my program, but when I use JavaScript or CSS, it will apply to the child table.
How can I escape child table in JavaScript and CSS?