Reputation: 690
Here is my problem. I have nested tables something like this
<table id="tblMenu">
<tr>
<td valign="top">
<table id="tblMenu1">
<tr>
<td>
<div class="submenuRed" onclick="emptyTd();">
</div>
</td>
</tr>
<tr>
<td>
<div class="submenuRed" onclick="emptyTd();">
</div>
</td>
</tr>
<tr>
<td>
<div class="submenuRed" onclick="emptyTd();">
</div>
</td>
</tr>
</table>
</td>
<td valign="top">
</td>
<td valign="top">
</td>
<td valign="top">
</td>
</tr>
</table>
When I click on div nested deep inside I want to find out the column position of table tblMenu.
How can I get it using jQuery
Pls suggest!
Thanks! Arshya
Upvotes: 0
Views: 629
Reputation: 4561
add $(this) in the call of the emptyId function
and do this :
function emptyId(div) {
div.text($('td[valign="top"]').index(div.closest('td[valign="top"]')) + 1);
}
it should work
Upvotes: 1
Reputation: 92973
.closest()
and .index()
function emptyTd() {
var idx = $('#tblMenu1').closest('td').index();
// index() starts counting at zero
};
http://jsfiddle.net/mblase75/KGEtq/
Upvotes: 1