I have this simple table ( nested )
<table border="1px">
<tr>
<th>kkkk</th>
<th>mmmm</th>
</tr>
<tr>
<td>a</td>
<td>a</td>
</tr>
<tr>
<td>a</td>
<td>a</td>
</tr>
<tr>
<td>a</td>
<td>
<table border="1px" style="margin:10px">
<tr>
<th>xxxx</th>
<th style="background-color:yellow">yyyy</th>
</tr>
<tr>
<td>a</td>
<td>a</td>
</tr>
<tr>
<td>a</td>
<td>a</td>
</tr>
<tr>
<td >a</td>
<td style="background-color:red;" class="theTd">a</td>
</tr>
</table>
</td>
</tr>
</table>

(there aren't any table Id's here)
I want by clicking on the red area , to find the row which the yellow value in.
I dont have a problem of getting the index of the TH.
the problem is that I want to do it by Parents() method only - and the red box sees 2 parents TR's which have TH.... The xxx,yyy row and the kkk,mmm row...
Something like :
alert( $(".theTd").parents("first tr parent which contains th's").....);
What is the correct Selector syntax ?
http://jsbin.com/udohum/1/edit
edit
I don't want the ordinary parent().parent().... cause a .theTd can contain a wrapper Div's inside it etc... - so the parent here will be DIV. ( which hurts the logic....)

parents()method only"? – Dennis Aug 12 '12 at 13:04