parent
This method selects the parent element of each element in the collection and returns a new collection containing the parent elements.
// Select the parent element of each element
parent: function() {
var parents = [];
this.elements.forEach(function(element) {
parents.push(element.parentNode);
});
return $(parents);
}