Created
February 2, 2018 07:52
-
-
Save jeroenbourgois/7d06948ac92a11c19f8798d1a23587ab to your computer and use it in GitHub Desktop.
Remove DOM element
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function removeElement(el, retry) { | |
if (el && el.parentNode) { | |
el.parentNode.removeChild(el) | |
} | |
if (retry) { | |
setTimeout(function() { | |
removeElement(el, false) | |
}, 1000) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment