// Delete the matched nodes from the DOM
u.prototype.remove = function () {
// Loop through all the nodesreturnthis.each(function (node) {
// Perform the removal only if the node has a parentif (node.parentNode) {
node.parentNode.removeChild(node);
}
});
};