i cannot determine the correct selector for the table.
<tr id="test1">
<td></td>
<td></td>
</tr>
<tr>
<td colspan="2">\*SELECT THIS \*</td>
</tr>
I want to select tr with id and select the input of the second tr "* SELECT THIS *"
$("#test1").next()
So, I'm in the second tr, but I want td under this tr.
$("#test1").next().$("td") does not work.
Any ideas?
source
share