jQuery 1.3.2 Sizzle (0.93) vs 1.3.2 (Sizzle 1.0) (v7)

Revision 7 of this benchmark created on


Description

Let's test the different versions of jQuery library for: * selectors * DOM traversing * DOM manipulation * form serialization * events

Test runner

Ready to run.

Testing in
TestOps/sec
jQuery 1.3.2 Sizzle 0.93
for (var sel in selectors) {
  j3(sel);
}
j3('#linkone').parent().next().find('li').eq(0);
j3('#linkone').after(htmlafter).append(htmlappend);
j3('form').serialize();
j3('#linkone').click(clickaction);
ready
jQuery 1.3.2 Sizzle 1.0
for (var sel in selectors) {
  jQuery(sel);
}
jQuery('#linkone').parent().next().find('li').eq(0);
jQuery('#linkone').after(htmlafter).append(htmlappend);
jQuery('form').serialize();
jQuery('#linkone').click(clickaction);
ready

Revisions

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