jQuery Selector Perf - Right-to-Left (v55)

Revision 55 of this benchmark created by tick on


Preparation HTML

<div id="box">
  <div class="wrapper">
    <p>
      Stuff
    </p>
  </div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js">
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
"Left to Write" Thinking
$('div > .wrapper');
ready
"Right to Left"
$('.wrapper');
ready

Revisions

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