Kimbo vs jQuery css method

Benchmark created by Denis on


Description

Test performance between Kimbo and jQuery .css() method

Preparation HTML

<script src="http://kimbojs.com/lib/kimbo.js">
</script>
<script src="http://kimbojs.com/lib/jquery.js">
</script>

<p id="p">This paragraph should be red</p>

<script>
  window.$k = Kimbo;
  window.$j = jQuery;
</script>

Setup

var k_p = $k('#p');
    var j_p = $j('#p');

Test runner

Ready to run.

Testing in
TestOps/sec
Kimbo .css()
k_p.css('color', 'red');
ready
jQuery .css()
j_p.css('color', 'red');
ready

Revisions

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