jQuery vs createElement (v131)

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

Test runner

Ready to run.

Testing in
TestOps/sec
$('<iframe>')
var iframe = $('<iframe>')
iframe.attr('src', 'http://www.qut.edu.au/');
ready
$('<iframe></iframe>')
var iframe = $('<iframe></iframe>');
iframe.attr('src', 'http://www.qut.edu.au/');
ready
document.createElement
var iframe = $(document.createElement('iframe'));
iframe.attr('src', 'http://www.qut.edu.au/');
ready
document.createElement[0]
var iframe = $(document.createElement('iframe'))[0];
iframe.attr('src', 'http://www.qut.edu.au/');
ready

Revisions

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