dollar-js
dollar-js copied to clipboard
creating dom from string only creates the first node
jQuery successfully adds 2 nodes to the document
jQuery('body').prepend('<div>ONE</div><div>TWO</div>')
Dollar incorrectly only adds the first one
$('body').prepend('<div>ONE</div><div>TWO</div>')