jQuery 1.9.1 vs. 2.0.0 (v39)

Revision 39 of this benchmark created by David Laing on


Description

Simple comparison of JQuery 1.9.1 and 2.0.0 "final" versions

Preparation HTML

<script src="https://code.jquery.com/jquery-1.9.1.min.js">
</script>
<script>
  var jQ19 = jQuery.noConflict();
</script>
<script src="https://code.jquery.com/jquery-2.0.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.9.1 ID Selector
jQ19("#idSelector");
ready
2.0.0 ID Selector
jQ20("#idSelector");
ready
1.9.1 Class Selector
jQ19(".classSelector");
ready
2.0.0 Class Selector
jQ20(".classSelector");
ready
1.9.0 Iteration
jQ19("#iteration li").each(function(i, e) {
  i++;
});
ready
2.0.0 Iteration
jQ20("#iteration li").each(function(i, e) {
  i++;
});
ready
1.9.0 CSS Getter
jQ19("#cssGetter").css("color");
ready
2.0.0 CSS Getter
jQ20("#cssGetter").css("color");
ready
1.9.0 CSS Setter
jQ19("#cssSetter").css("color", "red");
ready
2.0.0 CSS Setter
jQ20("#cssSetter").css("color", "red");
ready
1.9.0 Find
jQ19("#find").find("strong");
ready
2.0.0 Find
jQ20("#find").find("strong");
ready
1.9.0 Non-existent ID
jQ19("#someID");
ready
2.0.0 Non-existent ID
jQ20("#someID");
ready
1.9.0 Non-existent Class
jQ19(".someClass");
ready
2.0.0 Non-existent Class
jQ20(".someClass");
ready
1.9.0 Filter-next-prev
jQ19("#iteration li").filter(":first").next();
jQ19("#iteration li").filter(":last").prev();
ready
2.0.0 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.