show/hide this revision's text 3 deleted 68 characters in body

This won't make it happen any faster but it will stop the browser from locking up on the user; they can continue to use the page while this happens in the background:

function asyncInnerHTML(HTML, callback) {
    var temp = document.createElement('div'),
        frag = document.createDocumentFragment(),
        timeout;
    temp.innerHTML = HTML;
    (function(){
        timeout = setTimeout(arguments.callee, 0);
        if(temp.firstChild){
            frag.appendChild(temp.firstChild);
            setTimeout(arguments.callee, 0);
        } else {
            clearTimeout(timeout);
            callback(frag);
        }
    })();
}

Using it:

var allTheHTML = '<div><a href="#">.............</div>';
asyncInnerHTML(allTheHTML, function(fragment){
    myTarget.appendChild(fragment); // myTarget should be an element node.
});

This technique will take longer than plain innerHTML but the user will be able to carry on using your site without noticing a delay.

show/hide this revision's text 2 deleted 10 characters in body

This won't make it happen any faster but it will stop the browser from locking up on the user; they can continue to use the page while this happens in the background:

function asyncInnerHTML(HTML, callback) {
    var temp = document.createElement('div'),
        frag = document.createDocumentFragment(),
        timeout;
    temp.innerHTML = HTML;
    (function(){
        var fn = arguments.callee;
        fn.timeout timeout = setTimeout(fnsetTimeout(arguments.callee, 0);
        if(temp.firstChild){
            frag.appendChild(temp.firstChild);
        } else {
            clearTimeout(fn.timeout)clearTimeout(timeout);
            callback(frag);
        }
    })();
}

Using it:

var allTheHTML = '<div><a href="#">.............</div>';
asyncInnerHTML(allTheHTML, function(fragment){
    myTarget.appendChild(fragment); // myTarget should be an element node.
});

This technique will take longer than plain innerHTML but the user will be able to carry on using your site without noticing a delay.

show/hide this revision's text 1

This won't make it happen any faster but it will stop the browser from locking up on the user; they can continue to use the page while this happens in the background:

function asyncInnerHTML(HTML, callback) {
    var temp = document.createElement('div'),
        frag = document.createDocumentFragment();
    temp.innerHTML = HTML;
    (function(){
        var fn = arguments.callee;
        fn.timeout = setTimeout(fn, 0);
        if(temp.firstChild){
            frag.appendChild(temp.firstChild);
        } else {
            clearTimeout(fn.timeout);
            callback(frag);
        }
    })();
}

Using it:

var allTheHTML = '<div><a href="#">.............</div>';
asyncInnerHTML(allTheHTML, function(fragment){
    myTarget.appendChild(fragment); // myTarget should be an element node.
});

This technique will take longer than plain innerHTML but the user will be able to carry on using your site without noticing a delay.