.after() vs jQuery .insertAfter() vs parentNode.insertBefore() (v10)

Revision 10 of this benchmark created on


Description

jQuery .after() vs jQuery .insertAfter() vs parentNode.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
.after()
$('#header').after($('#thumbnails'));
ready
.insertAfter()
$('#thumbnails').insertAfter('#header');
ready
.parent().append()
$('#header').parent().append($("#thumbnails"));
ready

Revisions

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