Como remover um elemento de um elemento pai JavaScript
function removeElement(el) {
el.parentNode.removeChild(el);
}
// or
HTMLElement.prototype.remove = function() { this.parentNode.removeChild(this); return this; }
Glorious Gnu