children
The children method selects the child elements of each element in the collection and returns a new collection containing the child elements.
// Select the child elements of the elements
children: function() {
var children = [];
this.elements.forEach(function(element) {
children = children.concat([].slice.call(element.children));
});
return $(children);
},