Skip to content

Instantly share code, notes, and snippets.

@maxdenaro
Created August 4, 2019 18:04
Show Gist options
  • Save maxdenaro/1a1d877f0bb549103bc1e7b22ce988e4 to your computer and use it in GitHub Desktop.
Save maxdenaro/1a1d877f0bb549103bc1e7b22ce988e4 to your computer and use it in GitHub Desktop.
jQuery outerHTML
jQuery.fn.outerHTML = function () {
return jQuery('<div />').append(this.eq(0).clone()).html();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment