YUI3 vs. jQuery vs. Qooxdoo (v56)

Revision 56 of this benchmark created on


Preparation HTML

<script src="http://code.jquery.com/jquery-1.9.1.min.js">
</script>
<script src="https://raw.github.com/jquery/sizzle/master/sizzle.js">
</script>
<script src="//cdnjs.cloudflare.com/ajax/libs/qooxdoo/2.1.1/q.min.js">
</script>
<script src="http://yui.yahooapis.com/3.9.1/build/yui/yui-min.js">
</script>
<script>
  Y = YUI().use('node');
</script>
<section class="target-me" name="donuts">
  .target-me
</section>
<section class="target-me">
  .target-me
</section>
<section class="target-me" name="candy">
  .target-me
</section>

Test runner

Ready to run.

Testing in
TestOps/sec
jQuery
$('.target-me');
ready
Qooxdoo
q('.target-me');
ready
YUI3
Y.Selector.query('.target-me');
ready
Sizzle
Sizzle('.target-me');
ready

Revisions

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