// Remove default search button (CrossBrowser)
if (!Element.prototype.remove) {
Element.prototype.remove = function remove() {
if (this.parentNode) this.parentNode.removeChild(this)
};
}
// exemmple: el.remove()