Skip to content

Instantly share code, notes, and snippets.

@displaynone
Last active March 11, 2017 11:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save displaynone/1c5e8fa24a3101a01b7e429e5e320b12 to your computer and use it in GitHub Desktop.
Save displaynone/1c5e8fa24a3101a01b7e429e5e320b12 to your computer and use it in GitHub Desktop.
jQuery wrap in Vanilla JS
// https://codepen.io/luissacristan/pen/vxmKoP
document.querySelectorAll( 'div' ).forEach( elem => {
elem.outerHTML = '<div>' + elem.outerHTML + '</div>';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment