tags:

views:

27

answers:

2

I am trying to take information from a <tr> and prefill it in all <tr>s below that <tr>. I know I can grab the <tr> I want and put it in a variable, but is there a good selector for grabbing only the <tr>s below that row?

+2  A: 
$(yourtr).nextAll()
chaos
+1  A: 

Does it need to be filtered for tr's?

$(yourtr).nextAll()

An example., the source.

altCognito
Don't think anything can validly coexist with a tr at the sibling level other than other tr. Might be some wackiness I never use that makes it possible, though.
chaos
I think you're right, no need to filter for it.
altCognito