jQuery vs createElement (v149)

Revision 149 of this benchmark created by ukuc 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.7.2/jquery.min.js">
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
$('<div>')
$('<div>').attr({
  src: "http://www.gravatar.com/avatar/cb0ae5bd20b37b195adfb73d0eebc510?s=128&d=identicon&r=PG"
})
ready
$('<div></div>')
$('<div></div>').attr({
  src: "http://www.gravatar.com/avatar/cb0ae5bd20b37b195adfb73d0eebc510?s=128&d=identicon&r=PG"
})
ready
document.createElement
$(document.createElement('div')).attr({
  src: "http://www.gravatar.com/avatar/cb0ae5bd20b37b195adfb73d0eebc510?s=128&d=identicon&r=PG"
});
ready

Revisions

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