hi,
i'm having several tables in my html markup which dont have any attributes and i'm wondering: is it possible to define a jquery selector which directly picks eg. the 3rd table?
thx
hi,
i'm having several tables in my html markup which dont have any attributes and i'm wondering: is it possible to define a jquery selector which directly picks eg. the 3rd table?
thx
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")