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

Revision 153 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 class="bar">
  bars</p>

Test runner

Ready to run.

Testing in
TestOps/sec
jQuery getElementById
$(document.getElementById('foo'));
ready
jQuery Id Selector
$('#foo');
ready
getElementById
document.getElementById('foo');
ready
Jquery Class Selector
$('.bar');
ready
getElementsByTagName
document.getElementsByTagName('bar');
ready

Revisions

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