jQuery vs createElement (v180)

Revision 180 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="//code.jquery.com/jquery-2.0.3.js"></script>
<script>
function $$(el) {
  return $(document.createElement(el));
}
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
$('<div>')
$('<div>')
ready
$('<div></div>')
$('<div></div>')
ready
document.createElement
$(document.createElement('div'))
ready
$$
$$('div');
ready
$('<div/>')
$('<div/>')
ready

Revisions

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