Created
August 13, 2022 18:04
-
-
Save jgoslow/c6a521ca9c880799654ebe7b0cb5c235 to your computer and use it in GitHub Desktop.
Unwrap an element from it's container
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
/** | |
* Unwrap element | |
*/ | |
function unwrap(wrapper) { | |
// place childNodes in document fragment | |
var docFrag = document.createDocumentFragment(); | |
while (wrapper.firstChild) { | |
var child = wrapper.removeChild(wrapper.firstChild); | |
docFrag.appendChild(child); | |
} | |
// replace wrapper with document fragment | |
wrapper.parentNode.replaceChild(docFrag, wrapper); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment