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