zepto vs jquery - reverse load (v26)

Revision 26 of this benchmark created on


Preparation HTML

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


<div id="rsvp" class="view" data-view-title="RSVPs">
    <div class="content"></div>
</div>
<div id="chapter_004" class="view" data-view-title="Splendid Corgi Consortium">
    <div class="content"></div>
</div>

Test runner

Ready to run.

Testing in
TestOps/sec
Zepto - id
Zepto('#chapter_004');
ready
jQuery - id
jQuery('#chapter_004');
ready
Zepto - id + class
Zepto('#rsvp .content');
ready
jQuery - id + class
jQuery('#rsvp .content');
ready
Zepto - data
Zepto('#rsvp').data('title');
ready
jQuery - data
jQuery('#rsvp').data('title');
ready

Revisions

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