find
This method can be used to find descendant elements of the elements in the collection that match a selector.
// Find descendant elements that match a selector
find: function(selector) {
var elements = [];
this.elements.forEach(function(element) {
elements = elements.concat([].slice.call(element.querySelectorAll(selector)));
});
return $(elements);
}