jQuery vs createElement (v168)

Revision 168 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.10.2/jquery.min.js"></script>

Test runner

Ready to run.

Testing in
TestOps/sec
$()
var div = $('<div></div>'),
    temp = $('<h4>some sample text</h4>').attr('class', 'someClass');

div.append(temp);
 
ready
createElement
var div = $(document.createElement('div')), 
    temp = $(document.createElement('h4')).attr('class', 'someClass').html('some sample text');

div.append(temp);
ready

Revisions

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