getElementById VS jQuery('#id') (v193)

Revision 193 of this benchmark created by codemole on


Description

Re-run of rev. 44 using the latest jQuery

Preparation HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<p id="foo">
  Test
</p>
<p id="bar">
  bars
</p>

Test runner

Ready to run.

Testing in
TestOps/sec
getElementById
$(document.getElementById('foo'));
ready
jQuery Selector
$('#foo');
ready
Custom Method
function _(id){
    return jQuery(document.getElementById(id));
}
_('foo');
 
ready
$ Custom Method
function _(id){
    return $(document.getElementById(id));
}
_('foo');
 
ready
jQuery Window Object
$('#foo');
$('#bar');
ready
realgetelementbyid
document.getElementById('foo');
ready
typeof
if(typeof (document.getElementById('foo')) === "undefined"){}
ready
querySelector
$(document.querySelector('#foo'));
ready

Revisions

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