javascript remove all child nodes javascript / jquery (v297)

Revision 297 of this benchmark created by eight on


Description

Revision of 167. Fix error on Firefox.

Preparation HTML

<div id="box"></div>

<script>
var boxAnchor, box, i, b, range;

boxAnchor = document.createElement('div');
boxAnchor.style.cssText="white-space:nowrap";
boxAnchor.id = 'box';

for (i = 0; i < 1000; i++) {
        b = document.createElement('B');
        b.appendChild(document.createTextNode('asdf fewf'));
        boxAnchor.appendChild(b);
}
box = document.getElementById('box');

// Clone boxAnchor to box
function refreshRange() {
        var newBox = boxAnchor.cloneNode(true);
        box.parentNode.replaceChild(newBox, box);
        box = newBox;
}

</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>

Test runner

Ready to run.

Testing in
TestOps/sec
removeChild Recheck
refreshRange();
while (box.firstChild) 
  box.removeChild(box.firstChild);
ready
removeChild lastChild with reference
refreshRange();
    var last;
    while ((last = box.lastChild)) box.removeChild(last);
ready
firstChild haschildnodes() check
refreshRange();
while(box.hasChildNodes())
  box.removeChild(box.firstChild);
ready
deletecontents (IE9+)
refreshRange();
var range = document.createRange();
range.selectNodeContents(box);
range.deleteContents();
ready
replaceChild cloneNode(shallow) (DESTRUCTIVE)
refreshRange();
var newBox = box.cloneNode(false);
box.parentNode.replaceChild(newBox,box);
box=newBox;
ready
removeChild then reAttach
refreshRange();
var parent = box.parentNode;
var next = box.nextSibling;
parent.removeChild(box);
while(box.hasChildNodes())
  box.removeChild(box.firstChild);
parent.insertBefore(box,next);
ready
innerhtml = ""
refreshRange();
box.innerHTML = '';
ready
jquery
refreshRange();
$(box).contents().remove();
ready
hide
refreshRange();
var display = box.style.display;
box.style.display = 'none';
while(box.hasChildNodes())
  box.removeChild(box.firstChild);
box.style.display = display;
ready

Revisions

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