jQuery vs createElement (v79)

Revision 79 of this benchmark created on


Description

Benchmarks from answer on StackOverflow: http://stackoverflow.com/questions/268490/jquery-document-createelement-equivalent/268520

Preparation HTML

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>

Test runner

Ready to run.

Testing in
TestOps/sec
$('<div id="my-id">')
$('<div id="my-id">')
ready
$('<div id="my-id"></div>')
$('<div id="my-id"></div>')
ready
document.createElement
var d=document.createElement('div');
d.id='my-id';
$(d);
ready
document.createElement w/ jQuery.attr
$(document.createElement('div')).attr('id','my-id');
ready

Revisions

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