appendChild vs. DocumentFragment vs. innerHTML (v33)

Revision 33 of this benchmark created on


Description

Comparing 2 different ways to dynamically insert new elements into the DOM tree.

Preparation HTML

<div id="test1"></div>

Setup

window.content = {
        // a simple string to be attached via innerHTML
        string: '<div>Testing innerHtml and DOM-based methods on <strong>massive</strong> add.</div>',
    
        // a node to be attached using DOM methods
        dom: (function () {
            var node, strong;
            node = document.createElement('div');
            node.appendChild(document.createTextNode('Testing innerHtml and DOM-based methods on '));
            strong = document.createElement('strong');
            strong.appendChild(document.createTextNode('massive'));
            node.appendChild(strong);
            node.appendChild(document.createTextNode(' add.'));
            return node;
        })()
    };

Teardown


    div1.innerHTML = '';
  

Test runner

Ready to run.

Testing in
TestOps/sec
innerHTML
var div1 = document.getElementById("test1"),
    content = window.content,
    html = [];

for (var i = 0; i < 10000; i++) {
    html.push(content.string);
}

div1.innerHTML = html.join('');
ready
DocumentFragment
var div1 = document.getElementById("test1"),
    content = window.content,
    frag = document.createDocumentFragment();

for (var i = 0; i < 10000; i++) {
    frag.appendChild(content.dom.cloneNode(true));
}

div1.appendChild(frag);
ready
DocumentFragment with new node creation
var div1 = document.getElementById("test1"),
    frag = document.createDocumentFragment();

for(var i=0; i<1000; i++){
    var el = document.createElement('div');
    el.innerHTML = Math.random();
    frag.appendChild(el);
}

div1.appendChild(frag);
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.