FastJs 1.0.3 vs Zepto CSS method (v4)

Revision 4 of this benchmark created on


Description

FastJs vs jQuery Seleectors

Preparation HTML

<script src="http://fastjs.net/downloads/fast-1.0.3.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="http://zeptojs.com/zepto.min.js"></script>
<div id="test"></div>

Test runner

Ready to run.

Testing in
TestOps/sec
FastJs 1.0.3 Cached Selector
var ft = f("#test");
f.css(ft, "color", "#fff");
ready
jQuery 2.0.3 Cached Selector
var jt = jQuery("#test");
jt.css("color", "#fff");
ready
Zepto
var zp = Zepto("#test");
zp.css("color", "#fff");
ready

Revisions

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