innerHTML or DOM

Benchmark created by Neil Jenkins on


Description

Most dynamic websites use innerHTML because they think it's faster. But is it?

Preparation HTML

<script type="text/javascript">
"use strict";

var create = (function () {

var doc = document;

var directProperties = {
    'class': 'className',
    className: 'className',
    defaultValue: 'defaultValue',
    'for': 'htmlFor',
    html: 'innerHTML',
    text: 'textContent',
    value: 'value'
};

var booleanProperties = {
    checked: 1,
    defaultChecked: 1,
    disabled: 1,
    multiple: 1,
    selected: 1
};

var setProperty = function ( el, key, value ) {
    var prop = directProperties[ key ];
    if ( prop ) {
        el[ prop ] = ( value == null ? '' : '' + value );
    } else if ( booleanProperties[ key ] ) {
        el[ key ] = !!value;
    } else if ( value == null ) {
        el.removeAttribute( key );
    } else {
        el.setAttribute( key, '' + value );
    }
};

var appendChildren = function ( el, children ) {
    var i, l, node;
    for ( i = 0, l = children.length; i < l; i += 1 ) {
        node = children[i];
        if ( node ) {
            if ( node instanceof Array ) {
                appendChildren( el, node );
            } else {
                if ( typeof node === 'string' ) {
                    node = doc.createTextNode( node );
                }
                el.appendChild( node );
            }
        }
    }
};

var splitter = /(#|\.)/;

var create = function ( tag, props, children ) {
    if ( props instanceof Array ) {
        children = props;
        props = null;
    }
    
    var parts, name, el,
        i, j, l, node, prop;
    
    if ( splitter.test( tag ) ) {
        parts = tag.split( splitter );
        tag = parts[0];
        if ( !props ) { props = {}; }
        for ( i = 1, j = 2, l = parts.length; j < l; i += 2, j += 2 ) {
            name = parts[j];
            if ( parts[i] === '#' ) {
                props.id = name;
            } else {
                props.className = props.className ?
                    props.className + ' ' + name : name;
            }
        }
    }
    
    el = doc.createElement( tag );
    if ( props ) {
        for ( prop in props ) {
            setProperty( el, prop, props[ prop ] );
        }
    }
    if ( children ) {
        appendChildren( el, children );
    }
    return el;
};

return create;

}() );

var data = {
    isSelected: true,
    isActive: false,
    href: 'http://www.google.com',
    total: 4,
    displayDate: '28th December 2011',
    text: 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.',
    preview: 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.'
};

var genDOM = function ( data ) {
    var el = create;
    return el( 'div', {
        className: 'Foo' +
            ( data.isSelected ? ' selected' : '' ) +
            ( data.isActive ? ' active' : '' )
    }, [
        el( 'label', [
            el( 'input', {
                type: 'checkbox',
                checked: data.isSelected ? 'checked': ''
            })
        ]),
        el( 'button.button', {
            title: 'A title',
            text: 'The button text'
        }),
        el( 'a', {
            href: data.href
        }, [
            el( 'span', {
                className: 'lorem' +
                    ( data.total > 1 ? ' ipsum' : '' )
            }, [
                el( 'span.dolores', {
                    unselectable: 'on'
                }, [
                    data.text
                ]),
                data.total > 1 ? el( 'span.total', {
                    unselectable: 'on',
                    text: '(' + data.total + ')'
                }) : null
            ]),
            data.yes ? el( 'span.yes', {
                text: '*'
            }) : null,
            el( 'span.text', {
                unselectable: 'on'
            }, [
                data.total > 1 ? data.text : null
            ]),
            el( 'time', {
                unselectable: 'on',
                text: data.displayDate,
                title: data.displayDate
            }),
            el( 'span.preview', {
                unselectable: 'on',
                text: data.preview
            })
        ])
    ] );
};

var genHTML = function ( data ) {
    return '<div class="Foo' +
            (data.isSelected ? ' selected' : '') +
            (data.isActive ? ' active' : '') + '">' +
        '<label><input type="checkbox" checked="' +
        (data.isSelected ? 'checked': '') + '"></label>' +
        '<button class="button" title="A title">The button text</button>' +
        '<a href="' + data.href + '"><span class="lorem' +
            ( data.total > 1 ? ' ipsum' : '' ) +
            '"><span class="dolores" unselectable="on">' + data.text +
            '</span>' + ( data.total > 1 ?
                '<span class="total" unselectable="on">(' + data.total + ')</span>' :
                '') +
            '</span>' + (data.yes ? '<span class="yes">*</span>' : '') +
            '<span class="text" unselectable="on">' +
            (data.total > 1 ? data.text : null) +
            '</span>' +
            '<time unselectable="on" title="' + data.displayDate + '">' +
            data.displayDate +
            '</time><span class="preview" unselectable="on">' + data.preview +
            '</span></a></div>';
            
};
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
innerHTML
var x = document.createElement( 'div' );
x.innerHTML = genHTML( data );
x = x.firstChild;
ready
DOM
genDOM( data );
ready

Revisions

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