Skip to content

Instantly share code, notes, and snippets.

@Istenes
Created September 24, 2012 07:25
Show Gist options
  • Save Istenes/3774754 to your computer and use it in GitHub Desktop.
Save Istenes/3774754 to your computer and use it in GitHub Desktop.
bonzo.create = function (node) {
// hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh
return typeof node == 'string' && node !== '' ?
function () {
var parser = new DOMParser()
//Add try catch for DOMParseErrors
return parser.parseFromString(node, "text/html")
}() : isNode(node) ? [node.cloneNode(true)] : []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment