I looked at JQuery documentation, read FAQ and saw a lot of examples. It looks like to get a set of all elements in the document that is described by a rule, you code
$(rule)
where rule is a string whose syntax is described here. Document seems to be a hidden input parameter. Can I do the same with a subtree of the DOM? If I have a DOM element, can I code something like
element.$(rule)
?
From the docs: