zepto vs jquery - selectors (v61)

Revision 61 of this benchmark created on


Preparation HTML

<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="http://zeptojs.com/zepto.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
getElementById
document.getElementById('chapter_004');
ready
Zepto ClassName
Zepto('.view');
ready
jQuery ClassName
jQuery('.view');
ready
querySelectorAll
document.querySelectorAll('.view');
ready

Revisions

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