• The expressions allowed include selectors like > p which will find all the paragraphs that are children of the elements in the jQuery object.
  • jQuery find() Method. jQuery Traversing Methods. Example. A selector expression, element or jQuery object to filter the search for descendants.
  • The jQuery Find Method (.find()) returns all the descendants of the selector. The descendants are the elements that lie inside the selected element.
  • The jQuery object is designed to be a wrapper around the elements. .find() is a jQuery function, it only works on jQuery objects.
  • The find() is an inbuilt method in jQuery which is used to find all the descendant elements of the selected element.
  • If you want to find all the descendant elements of the selected element, you have to use “*” as the parameter of the jQuery find() method.
  • We now know jQuery find() is used to select all child elements of a given selector. Take a look at some example code to see how to use jQuery find() .
  • With jQuery, you can use the find() to search through all the descendants(child, grandchild, great-grandchild…any levels deep) of the matched element.
  • The .find() method gets the descendants of each element in the current set of matched elements filtered by a selector, jQuery object, or element.