jquery - empty vs html (v38)

Revision 38 of this benchmark created on


Preparation HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<div id="foo" />
<script>
  var template = $('<div>foo bar foo bar foo bar foo bar</div>'),
      foo = $('#foo'),
      i;
  for ( i=0; i<1000; i++ ) {
    foo.append(template.clone());
  }

</script>

Test runner

Ready to run.

Testing in
TestOps/sec
empty
foo.empty();
ready
html
foo.html('');
ready
children
foo.children().remove();
ready
self remove
foo.remove();
ready

Revisions

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