Skip to content

Instantly share code, notes, and snippets.

@jeroenbourgois
Created February 2, 2018 07:52
Show Gist options
  • Save jeroenbourgois/7d06948ac92a11c19f8798d1a23587ab to your computer and use it in GitHub Desktop.
Save jeroenbourgois/7d06948ac92a11c19f8798d1a23587ab to your computer and use it in GitHub Desktop.
Remove DOM element
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