I have a table whose td values are displayed as
<table>
<tr>
<td><?=$something?></td>
<td><?=$something?></td>
<td><?=$something?></td>
<td><?=$something?></td>
</tr>
<tr>
<td><?=$somethingelse?></td>
<td><?=$somethingelse?></td>
<td><?=$somethingelse?></td>
<td><?=$somethingelse?></td>
</tr>
I would like to apply jquery for all td in the second row after some condition is met, for example, the first somethingelse in the first td is smaller than zero.
You could do something like:
Do you mean something like that..