UNPKG

istesequi

Version:

Lightweight and intuitive javascript library

15 lines (12 loc) 257 B
/** * .remove() * * Delete the matched nodes from the html tree */ u.prototype.remove = function() { // Loop through all the nodes return this.each(function(node) { // Perform the removal node.parentNode.removeChild(node); }); };