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>
link|improve this question

59% accept rate
3  
Can you rephrase? That code doesn't make sense... can you make your goal clearer? – mway Oct 6 '10 at 19:08
@mway, I think he wants to move to or target an arbitrary sibling element given a starting position. – David Thomas Oct 6 '10 at 19:16
Are you clicking on a tr or a td? .next() will select the next sibling element. – Peter Ajtai Oct 6 '10 at 19:16
@David - They don't seem to be siblings. The td with rowspan="4" is a single child... no siblings. – Peter Ajtai Oct 6 '10 at 19:17
You're right, I spotted the nested td after I posted the comment. I stand corrected, sir =) – David Thomas Oct 6 '10 at 19:19
show 1 more comment
feedback

2 Answers

up vote 1 down vote accepted

Correct me if I am wrong but it sounds like what you want is to get the next <tr> after X rows where X is the rowspan of a given <td> - 1. In other words, you want the next row into which that <td> will NOT extend.

If that is the case, this should do the trick:

var eq = $("#fromTd").attr("rowspan") - 1;
var row = $("#fromTd").parent("tr").nextAll(':eq(' + eq + ')');

Here's a live demo: http://jsfiddle.net/wLPA9/

link|improve this answer
1  
Just a matter of preference, but I find this slightly more readable: $("#fromTd").parent("tr").nextAll().eq(eq); – Peter Ajtai Oct 6 '10 at 20:13
It definitely is more readable :) I'm not sure if it offers any tangible benefits, but I was going for using fewer selectors. Like you said, just a matter of preference. – Ender Oct 6 '10 at 20:16
:eq(n) is executed as .eq(n) in the newest jQuery version (or will be in >1.4.2) according to John Resig. So you might as well save jQuery a step and avoid the ":eq(" + n + ")" string concatenation and verbosity by using .eq(n). – David Murdoch Oct 6 '10 at 20:43
Cool, thanks for the tip :) – Ender Oct 6 '10 at 20:48
feedback

If you're trying to do what that line looks like it's trying to do—selecting the row after the end of the current cell's rowspan—you would just need nextAll() instead of next(), which only ever returns the immediate next element sibling.

var td= $('#fromTd');
var nextr= td.parent().nextAll().eq(td.attr('rowspan')-1);

Alternatively if you've got lots of following rows and you don't want to have to select them all to pick a single one out, you could do it slightly more efficiently with the standard DOM rows and rowIndex properties:

var nextr= td.closest('table')[0].rows[td[0].parentNode.rowIndex+td[0].rowSpan];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.