1

I have an HTML page with tables nested to the 3rd level. I need help with a jquery selector to select the 3rd descendant table. Please note the topmost table has an id of "mytable" but the nested ones have no id. Clarifying again: this is the 3rd level nested table I want to pick and not a sibling table.

user1729972
  • 712
  • 2
  • 9
  • 29

1 Answers1

0

How does this work for you?

$('#mytable > table > table > table')
Mathijs Rutgers
  • 785
  • 4
  • 20