Reputation: 7599
I have several tables in my HTML markup which don't have any attributes and I'm wondering: is it possible to define a jQuery selector which directly picks eg. the third table?
Upvotes: 2
Views: 697
Reputation: 630569
In addition to Tim's answer, there's a :eq()
version you can use inside a selector as well, for example:
$("#myContainer table:eq(2) tr")
Upvotes: 1