| Current Path : /home/smartconb/www/armencom33/media/com_eventgallery/common/js/polyfill/ |
| Current File : /home/smartconb/www/armencom33/media/com_eventgallery/common/js/polyfill/element.remove.js |
// Create Element.remove() function if not exist
if (!('remove' in Element.prototype)) {
Element.prototype.remove = function() {
if (this.parentNode) {
this.parentNode.removeChild(this);
}
};
}