Failed to execute 'replaceChild' on 'Node': Nodes of type '#document-fragment' may not be inserted inside nodes of type '#document'. code example
Example: Inserting HTML elements with JavaScript
function create(htmlStr) {
var frag = document.createDocumentFragment(),
temp = document.createElement('div');
temp.innerHTML = htmlStr;
while (temp.firstChild) {
frag.appendChild(temp.firstChild);
}
return frag;
}
var fragment = create('<div>Hello!</div><p>...</p>');
document.body.insertBefore(fragment, document.body.childNodes[0]);