Can jQuery perform a compound select against the top level only?
- by harpo
Basically, is there a way to write
a.children('.outer').children('.inner')
without the intermediate selector? I can't write
$('.outer > .inner', a)
because I don't want to do full-depth search against a — I know that the .outer elements are immediate children of a.
It's partly a matter of "elegance", but partly because I'm trying to…