js unwrap element

JavaScript
// select element to unwrapvar el = document.querySelector('div');
// get the element's parent nodevar parent = el.parentNode;
// move all children out of the elementwhile (el.firstChild) parent.insertBefore(el.firstChild, el);
// remove the empty elementparent.removeChild(el);
Source

Also in JavaScript: