How to just extend selector from $(this) to, lets say, it's children? Or to anything else. I mean, how to properly contcatenate them with $(this)?
Like:
$("li.nav").each(function() {
$(this AND children of this, or this AND it's siblings).something();
});
Sorry if this was already answered, couldn't find it.