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

Revision 169 of this benchmark created on


Preparation HTML

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js">
</script>
<p id="foo">
  Test
</p>
<p id="bar">
  bars</p>
<script>
jQuery.fn.dom = function() {
    return this[0];
};
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
getElementById
$(document.getElementById('foo'));
ready
jQuery custom
$('#foo').dom()
ready
jquery object
$('#foo')[0]
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

Revisions

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