Jquery Descendants
In jQuery, you can select descendants of an element using the find() method or by using a space-separated selector. Using the find() method: The find() method selects all descendant elements that match the specified selector. It searches within the selected element and its children, grandchildren, and so on. $(selector).find(descendantSelector); Here, selector is the initial element(s) …