In my table shown below
<table>
<tr>
<td>
<table>
<tr>
<td>Name 1</td>
<td>Red</td>
</tr>
<tr>
<td>Name 2</td>
<td>Blue</td>
</tr>
<tr>
<td>Name 3</td>
<td>Green</td>
</tr>
<tr>
<td>Name 4</td>
<td>Yellow</td>
</tr>
</table>
</td>
</tr>
</table>
I am trying to select "Name 3". How can I do this? I have attempted
$('table table tr td')
but it is returning Name 1. Assuming I don't have any IDs assigned to them, I must be missing something obvious here! Your assistance would be much appreciated.