jQuery 1.1.3: 800%+ Faster, still 20KB

Posted on by

I’m pleased to announce the release of jQuery 1.1.3. After many months of testing, developing, and more testing, we have a very solid release available for download. It comes with roughly 80+ fixed bugs and a handful of enhancements for good measure. Highlights include:

  1. Improved speeds, with DOM traversal over 800% faster than in 1.1.2.
  2. A re-written event system, with more graceful handling of keyboard events.
  3. A re-written effects system (with an accompanying fx test suite), featuring faster execution and better cross-platform support.

Update – July 4th: We just finished a quick bug fix release, versioned 1.1.3.1, which fixes a couple of outstanding issues.

Download:

As always, if you find any bugs with this release, please post them to the jQuery Bug Tracker.

1.1.3 Features

Massive Selector Speed Improvements

Due to popular demand, we dug deep and made some major changes to jQuery’s selector engine. Here’s a breakdown of the speed improvements that were made to jQuery itself. All numbers are based on the SlickSpeed test suite.

Browser jQuery 1.1.2 jQuery 1.1.3 % Improvement
IE 6 4890ms 661ms 740%
Firefox 2 5629ms 567ms 993%
Safari 2 3575ms 475ms 753%
Opera 9.1 3196ms 326ms 980%
Average improvement: 867%

Additionally, we tested the improved code base against some of the other popular selector libraries, again with the SlickSpeed test suite.

Browser Prototype jQuery Mootools Ext Dojo
IE 6 1476ms 661ms 1238ms 672ms 738ms
Firefox 2 219ms 567ms 220ms 951ms 440ms
Safari 2 1568ms 475ms 909ms 417ms 527ms
Opera 9.1 220ms 326ms 217ms 296ms 220ms

A couple things to notice when looking at the speed suite results are that:

  • We’re over 800% faster than we were in jQuery 1.1.2.
  • We’re the fastest framework in the most popular browser, Internet Explorer 6.
  • We’re the only framework that doesn’t give incorrect results.
  • And all of this comes at no expense to you — jQuery is still the same 20KB that you’ve come to expect and enjoy.

New Selectors

Unicode Selectors: This is a huge addition for those of you who want to use Unicode attribute values, IDs, class names, or tag names. You can now use them directly in jQuery selectors:

$("div.台北")
$("div#台北")
$("foo_bar台北")
$("div[@id=台北]")

Escape Selectors: A frequently requested feature you can now select elements by ID (or other selector) that uses a special character, for example this will find the div that has the ID of “foo.bar”:

$("div#foo\\\\.bar")

Inequality Selector: While this selector isn’t part of the CSS specification, it’s frequently used and included in other selector libraries, so we decided to add it in:

$("div[@id!=test]")

:nth-child() improvements: This selector allows you to locate specific child elements. We’ve supported selectors like :nth-child(1) and :nth-child(odd) since the beginning of jQuery, now we’ve added advanced :nth-child selectors, such as:

$("div:nth-child(2n)")
$("div:nth-child(2n+1)")
$("div:nth-child(n)")

Space-separated attributes: After being removed in jQuery 1.0, this selector has now been brought back by popular demand. It allows you to locate individual items in a space-separated attribute (such as a class or rel attribute).

$("a[@rel~=test]")

Animation Improvements

Speed: Animations are now significantly faster and smoother. Additionally, you can run more simultaneous animations without incurring any speed hits.

Testing: We now have a dedicated test suite for animations — which has allowed us to fix a number of pressing animation bugs that weren’t previously locatable.

DOM Event Listeners

Internally, the jQuery Event system has been overhauled to use the DOM Event system, rather than the classical “onclick” style of binding event handlers. This improvement allows you to be more unobtrusive in your use of the library (not affecting the flow of other libraries around it). Additionally, it helped to resolve some of the outstanding issues that existed with binding event listeners to IFrames.

Event Normalization

Some great steps have been taken to normalize keyboard and mouse events. You can now access the event.which property to get most details about the specific key or button that was pressed.

Multiple .is()

The .is() method can now take multiple selectors, separated by a comma. This allows you to test your jQuery set against multiple selectors.

$("div").is(":visible, :first")

Browser Version

A commonly requested feature, by plugin authors, was a way to determine what browser version their users were using. We now expose an extra property through which this information can be accessed.

jQuery.browser.version

More Bug Fixes

Please see the ticket listing for the full list of all issues resolved in this release.

The Future of jQuery

We’ve been very concerned with the direction and progress being made towards furthering the jQuery project. We’re focusing on a number of different aspects now, but the primary concern is still the advancement of the core jQuery library. We’ve spec’d out the next two releases, which you can read more about below:

jQuery 1.1.4

This will be the last release of the jQuery 1.1 branch – another bug fix release with some minor improvements. This release will also mark a number of methods as deprecated, in accordance with the upcoming jQuery 1.2 release.

We’re currently planning on having this release take place at the end of July.

jQuery 1.2

This will be the next major release of jQuery, containing a significant number of new features. The full details of this release can be found in the jQuery 1.2 Roadmap.

Your comments and feedback on this release are greatly appreciated. It’s still in planning, so nothing is completely final. We’re currently planning on releasing jQuery 1.2 by the end of August.

jQuery Books

We’re now up to 4 jQuery books being written and, just as importantly, they’re all being written by members of the jQuery team (so you’ll know that you’re getting good information).

The books and their authors are as follows:

  • Learning jQuery by Karl Swedberg and Jonathan Chaffer – due out early July 2007 (Packt Publishing).
  • jQuery Reference Guide by Karl Swedberg and Jonathan Chaffer – due out Summer 2007 (Packt Publishing).
  • jQuery Quickly by Yehuda Katz and Bear Bibeault (Manning Publishing).
  • Designing with jQuery by Glen Lipka (Manning Publishing).

This is really fantastic news. I’ve been able to read some of the pre-release chapters and I think you’re going to be in for a real treat with these books.

jQuery Talks and Conference

I’d like to announce some talks being given about jQuery in the upcoming months. Specifically, there will be a number of talks given about jQuery at both of the Ajax Experience conferences.

At the San Francisco Ajax Experience, John Resig will be giving an introductory overview to jQuery followed by an advanced jQuery talk. Glen Lipka will be giving a talk on designing with jQuery.

At the Boston Ajax Experience, John and Glen will be presenting again, and will be joined by Paul Bakaus to give a talk on developing intense applications and games with jQuery.

Since there’s going to be quite a few members of the jQuery team at the Boston Ajax Experience, we’d like to announce that we’re planning on doing a small, one day, jQuery Conference the next day after the Ajax Experience. This will be the perfect opportunity for you to meet the jQuery team and ask any nagging questions that you have. We’ll also be giving a number of talks about specific aspects of jQuery. We’ll have more details about this soon.

jQuery UI

Today, we’re also pleased to announce a secret project that we’ve been working on: jQuery UI. This project, being written by Paul Bakaus, is a whole new Drag & Drop library being developed from the ground up with speed and extensibility taken into consideration. Additionally, great care is being taken to have the code be fully documented and tested — allowing many other developers to use and help extend it.

This library will contain full code for Draggables, Droppables, Sortables, Resizables, and a Slider.

You can take a look at some of Paul’s early work in the SVN repository.

Funding and Thank You

The new jQuery UI library marks a new step for the jQuery project: This is a piece of code whose development we’re sponsoring using money donated by you, the jQuery users!

This is being made possible in two ways: first by your continued support and donations to the jQuery project, and second by a generous server donation by Media Temple. This is allowing us to focus our financial resources on other projects that’ll benefit everyone the most.

So I’d like to take this opportunity to request additional donations to help us continue funding exciting new work that you’ll be able to use in your web sites. Any help will be greatly appreciated.

Amount in $

Once again, I’d like to thank the jQuery team and everyone who has helped to make this release possible. It’s been a lot of work, but I hope you’ll be as pleased with this release as we are. Thank you — and thanks for using jQuery!

343 thoughts on “jQuery 1.1.3: 800%+ Faster, still 20KB

  1. @Matei: Whats with the aggressive tone? Did i say something to make you angry or upset?

    Anyways, back on topic, we are constantly checking stats from our own clients and comparing notes. We also use 3rd party stats (eg: w3schools) because they offer a different perspective. I wanted to list at least one public source that we use to gauge browser popularity and w3schools is the one I chose. There’s nothing wrong with that at all.

    We’ve tested jQuery across every major browser and ensured enhanced performance accordingly and we make a concerted effort to balance that performance across all browsers. Our performance in IE is stellar because we do realize they have the largest user base. So I think you’ve jumped the gun a little with this whole browser stats thing. We’re all professionals on the jQuery team, some working for some very large companies and are very in tune with browser market shares.

  2. Pingback: jQuery 1.1.3 « These are the days

  3. T3rmin8r on said:

    What is the upgradability for already built sites running multiple plugins?
    Cam the new version be simply put in place…
    Ie. “Drop it, and lock it, and rock and roll…”?
    OR should the plugins be taken on a case by case basis, that there could be problems or upgrades required with those as well.
    Is the architecture backwards compatible, just like Nintendo, lol.?

  4. Pingback: links for 2007-07-03

  5. Pingback: Jetlogs.org » jQuery 1.1.3 Released

  6. Pingback: Katz Got Your Tongue? » Event Normalization in jQuery 1.1.3

  7. Pingback: Fatih HayrioÄŸlu’nun not defteri » 3 Temmuz 2007 Web’den Seçme Haberler

  8. Pingback: jQuery 1.1.3: Erwartungen übertroffen at Simpsonight

  9. __note on said:

    I think changes will be useful and I believe jQuery has become more faster.
    Good work

  10. Pingback: Propiedad Privada » Blog Archive » De web varia

  11. Pingback: jQuery 1.1.3 at Gea-Suan Lin’s BLOG

  12. Pingback: jQuery 1.1.3 at Gea-Suan Lin’s BLOG

  13. Struppi on said:

    ok, I get the problem with 1.1.3 – I override the useragent String and then it seems the Framework didn’t work anymore

  14. Andrew on said:

    Why integrate a set of “UI” functions with core? The majority of the functions you listed, i.e. draggable, dropable, etc, are not used nearly as often as showing (show()) and hiding (hide()) of elements, and I don’t see any real justification for including them.

    It seems to me that these are going to be large bits of code that have very little widespread use and will bloat the core code needlessly.

    Why not work with the interface team to improve their plug-in? Why not create a competing plug-in? Either way, I do not agree that such functions should be forced upon the developer and user and they should be made optional.

  15. Pingback: 云梦博客 » Blog Archive » Jquery 1.13发布!

  16. Jason on said:

    Any news on the nightly builds in the download section?

    When I view them, they give dates in/around april/may.

  17. Pingback: jQuery 1.1.3 Released « The Good, The Bad And The Ugly

  18. @Marc: As Brandon mentioned, its not going to be in core. Its going to be an official addon to provide the jQuery community with a better documented UI library.

  19. Pingback: Logon.com.pt » jQuery 1.1.3 - ainda mais rápida

  20. Andrew on said:

    [quote]jQuery UI is a new *plugin*.[/quote]

    That’s good news! Too many libraries attempt to include far to much in core and invariably bloat the code base, introduce far more bugs than would normally occur, and generally just clutter the entire thing.

    Keep up the good work!

  21. massa on said:

    guys,

    on Konqueror (using Kubuntu Linux), the 1.1.3 has errors on ALL tests using SlickSpeed. its probably the final score is 40 and to 1.1.2 is 7774.

    the error message is “TypeError: Type undefined (result of expression jQuery.find) is not an object. Cannot be called.”

  22. massa on said:

    guys,

    on Konqueror (using Kubuntu Linux), the 1.1.3 has errors on ALL tests using SlickSpeed. thats probably the reasion the final score is 40 and to 1.1.2 is 7774.

    the error message is “TypeError: Type undefined (result of expression jQuery.find) is not an object. Cannot be called.”

  23. Pingback: Javascript: jQuery adesso più veloce del 800% | Consulente Informatico - Sergio Gandrus

  24. Matei "Ambient.Impact" Stanca on said:

    @Rey Bango (http://jquery.com/blog/2007/07/01/jquery-113-800-faster-still-20kb/#comment-32932)

    It wasn’t my intention to come off as aggressive when I typed that. If I offended you, I’m sorry. I was merely concerned with the topic of browser stats, because you only mentioned W3Schools and no other source. I’ve come across people that cite that as their primary source, and it’s a bit worrying when it happens. Again, my apologies for the apparent tone of my previous post.

  25. Pingback: Blogvaria » jQuery 1.1.3: 800% Faster, still 20KB

  26. Pingback: Geschwindigkeitsrekord für neue jQuery-Version

  27. Anne on said:

    Forbidden
    Your client does not have permission to get URL /files/jquery-1.1.3-release.zip from this server. (Client IP address: 200.55.145.14)

    You are accessing this page from a forbidden country.
    I can’t download jQuery from my country.
    Is it fair ?

  28. @Matei: Thanks for the reply. I totally understand your concern and its extremely important to me and the team to hear your feedback and opinions. We also want to reassure everyone that we do our best to look at several sources when identifying key target areas for the lib (eg: browser penetration). We know that at the end of the day, you guys need to be able to work effectively and we try hard to ensure that when you use jQuery, that the library won’t be a stumbling block for you.

    Again, thank you for your feedback and certainly no offense taken. Now, if you would’ve called me a “fat, chunky monkey” well, then there might be some trouble!! ;)

  29. Pingback: jQuery 1.1.3: 800%+ Faster, still 20KB « Technology Blog

  30. resetstudio on said:

    Hi! Great speed improvement, but i’m experiencing some issues with “unbind” method… it works great if i don’t specify the event to unbind ($(eleme).unbind();) but if i specify it ($(elem).unbind(“hover”);), that will not work (in 1.1.2 works perfect) … is somebody experiencing the same?

  31. hi all,

    its all good, but when a new release comes, we all see how faster it is than the older one. but frankly to say, the old 1.1.2 didnt seemed that slow to me.

    also, what is wrong with Firefox speed?

  32. Pingback: Summary of Stuffs! : [ mkhairul.com ]

  33. Pingback: jQuery 1.1.3 | MySpace

  34. Pingback: jQuery 1.1.3: 800%+ Faster, still 20KB « Programming Geeks

  35. Pingback: script magazine » Blog Archive » Jquery 1.1.3

  36. Pingback: JQuery 1.1.3 is Lighter and Faster. Tastes Great, Less Filling. Now With Ginseng. at Vectorliving

  37. Pingback: DvD del.icio.us bookmarks : July 2, 2007 - July 5, 2007 at Wannaplay.it