I would like to remove the parent without removing the child - is this possible?
HTML structure:
Pure JS (ES6) solution, in my opinion easier to read than jQuery-solutions.
function unwrap(node) { node.replaceWith(...node.childNodes); }
node has to be an ElementNode