jQuery vs. document.querySelector (v105)

Revision 105 of this benchmark created by Kapao on


Description

I know its been done before. Just want to see for myself

Preparation HTML

<div id="main">
  <ul class="gallery">
    <li>
      Hello World
    </li>
    <li>
      Hello World
    </li>
    <li>
      Hello World
    </li>
    <li>
      Hello World
    </li>
    <li>
      Hello World
    </li>
    <li attribute>
      Hello World
    </li>
  </ul>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>

Teardown


    var el = document.querySelector("#main ul:first-child");
  

Test runner

Ready to run.

Testing in
TestOps/sec
jQuery
$("[attribute]");
ready
DOM
document.querySelector("[attribute]");
ready

Revisions

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