How can I get the target from the with td rowspan=4
Not sure about:
$("#fromTd").parent("tr").next().eq($("#fromTd").attr("rowspan")-1)
<table>
<tr>...</tr>
<tr>...</tr>
<tr><td id="fromTd" rowspan="4"></td></tr>
<tr>...</tr>
<tr>...</tr>
<tr>...</tr>
<tr>...</tr> -> target (can be aleatory position..)
</table>
tror atd?.next()will select the next sibling element. – Peter Ajtai Oct 6 '10 at 19:16tdwithrowspan="4"is a single child... no siblings. – Peter Ajtai Oct 6 '10 at 19:17