I can get the current row using this code. The "this" is a link in a table cell in the row.
$currentTR = $(this).parents('tr');
These next two lines can do the same thing, get the tr after the current row.
$nextTR = $(this).parents('tr').next();
$nextTR = $(this).parents('tr').next('tr');
If I output $nextTR.html()
I see what I expect
I don't know how many rows I need to go to get to the correct row except by class name and doing it like this doesn't work for me.
$nextTR = $(this).parents('tr').next('.concept');
$nextTR = $(this).parents('tr').next('tr .concept');
All I get is null
The example on docs.Jquery link text uses this
$("p").next(".selected").css("background", "yellow");
What am I missing here?