querySelector vs querySelectorAll vs getElementById vs getElementsByClassName vs getElementsByTagName (v25)

Revision 25 of this benchmark created on


Preparation HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>

<p id="foo" class="foo">
  <span id="1">,,,</span>
  <span id="2">,,,</span>
  <span id="3">,,,</span>

  <span class="bar">,,,</span>
</p>

Test runner

Ready to run.

Testing in
TestOps/sec
querySelector
document.querySelector("#foo").querySelector("#2");
ready
querySelectorAll
document.querySelectorAll("#foo").querySelectorAll("#2");
ready
getElementById
Array.prototype.forEach.call(document.getElementById("foo").getElementsByTagName('span'), function(item){ if(item.id === "2") return item;})
ready
getElementsByClassName
$("#foo").find("#2")
ready

Revisions

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