Skip to content

Instantly share code, notes, and snippets.

@rainyjune
Created February 13, 2013 07:09
Show Gist options
  • Save rainyjune/4942816 to your computer and use it in GitHub Desktop.
Save rainyjune/4942816 to your computer and use it in GitHub Desktop.
Get outerHTML
function outerHTML(node) {
if(node.outerHTML) return node.outerHTML;
var container = document.createElement("div");
container.appendChild(node.cloneNode(true));
return container.innerHTML;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment