I've got the following markup:
<div class="display-none" id="team_[NEXT-NUMBER-BY-PHP]">
<div id="ajax-json-loading"></div><div id="ajax-json-response"></div>
<table cellspacing="5">
<tr>
<td valign="top" style="width: 100px;">
<b>SOMETHING</b>
</td>
<td id="team-leader-area">
<div id="team-leader-id"><a href="javascript:void(0)"><?php echo $value['leader']; ?></a></div>
<div id="team-leader-modify"><a href="javascript:void(0)" onClick="changeAdmin(this.offsetParent)">Modify</a></div>
</td>
</tr>
<tr>
<td valign="top" style="width: 100px;">
<b>SOMETHING ELSE:</b>
</td>
<td>
<?php echo $value['p_address']; ?>
</td>
</tr>
</table>
</div>
<div class="display-none" id="team_[NEXT-NUMBER-BY-PHP]">
...
Which repeats. As you see, I have the JS function in the #team-leader-modify div, and I have to change the context of #team-leader-id.
Is it possible with using "parent" controls? If yes, how? If no, what's the easiest way?
Thanks in advance!
onclick="dostuff()". – Jared Farrish Oct 9 '11 at 14:39