jQuery 1.7.2 vs 2.1.0 (v90)

Revision 90 of this benchmark created by Brad on


Preparation HTML

<script src="https://code.jquery.com/jquery-1.7.2.min.js">
</script>
<script>
  var jQ172 = jQuery.noConflict();
</script>
<script src="https://code.jquery.com/jquery-2.1.0.min.js">
</script>
<script>
  var jQ20 = jQuery.noConflict();
</script>
<div id="idSelector">
</div>
<div class="classSelector">
</div>
<ul id="iteration">
  <li>
  </li>
  <li>
  </li>
  <li>
  </li>
  <li>
  </li>
  <li>
  </li>
  <li>
  </li>
  <li>
  </li>
</ul>
<div id="cssGetter" style="color: black;">
</div>
<div id="cssSetter" style="color: black;">
</div>
<div id="find">
  <span>
  </span>
  <div>
    <strong>
    </strong>
  </div>
</div>

Test runner

Ready to run.

Testing in
TestOps/sec
1.x ID Selector
jQ172("#idSelector");
ready
2.x ID Selector
jQ20("#idSelector");
ready
1.x Class Selector
jQ172(".classSelector");
ready
2.x Class Selector
jQ20(".classSelector");
ready
1.x Iteration
jQ172("#iteration li").each(function(i, e) {
  i++;
});
ready
2.x Iteration
jQ20("#iteration li").each(function(i, e) {
  i++;
});
ready
1.x CSS Getter
jQ172("#cssGetter").css("color");
ready
2.x CSS Getter
jQ20("#cssGetter").css("color");
ready
1.x CSS Setter
jQ172("#cssSetter").css("color", "red");
ready
2.x CSS Setter
jQ20("#cssSetter").css("color", "red");
ready
1.x Find
jQ172("#find").find("strong");
ready
2.x Find
jQ20("#find").find("strong");
ready
1.x Non-existent ID
jQ172("#someID");
ready
2.x Non-existent ID
jQ20("#someID");
ready
1.x Non-existent Class
jQ172(".someClass");
ready
2.x Non-existent Class
jQ20(".someClass");
ready
1.x Filter-next-prev
jQ172("#iteration li").filter(":first").next();
jQ172("#iteration li").filter(":last").prev();
ready
2.x Filter-next-prev
jQ20("#iteration li").filter(":first").next();
jQ20("#iteration li").filter(":last").prev();
ready

Revisions

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