Jquery: append vs insertBefore (v12)

Revision 12 of this benchmark created on


Description

jQuery .append() vs jQuery .insertBefore()

Preparation HTML

<div id=container>
  <div id=header>
    1. header
  </div>
  <div id=content>
    3. content
  </div>
  <div id=thumbnails>
    2. thumbnails
  </div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js">
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
.append()
$('#header').append($('#thumbnails'));
ready
insertBefore
$('#thumbnails').insertBefore('#header');
ready

Revisions

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