Skip to content

Instantly share code, notes, and snippets.

@furf
Created April 13, 2009 19:52
Show Gist options
  • Save furf/94673 to your computer and use it in GitHub Desktop.
Save furf/94673 to your computer and use it in GitHub Desktop.
var _parseHTMLFromDOMElement = function(el) {
if (el.outerHTML) {
return el.outerHTML;
} else {
var sandbox = document.createElement('DIV');
sandbox.appendChild(el.cloneNode(true));
return sandbox.innerHTML;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment