Blog » jQuery 1.2.6: Events 100% faster
Posted June 4th, 2008 by John ResigjQuery 1.2.6 is primarily a bug fix release for jQuery 1.2. You can view the full list of what was fixed on the bug tracker.
This is the next release immediately following jQuery 1.2.3. Releases 1.2.4 and 1.2.5 were skipped (1.2.4 was built incorrectly, rendering it effectively identical to 1.2.3, and 1.2.5 was missing a patch).
The entire jQuery team did a fantastic job in pulling this release together - I want to take this opportunity to thank them all for their continued hard work.
I’d also like to take this opportunity to welcome Ariel Flesler to the core jQuery development team. He provided valuable help in pulling this release together - contributing bug fixes, performance improvements, features, and test cases. You can see the result of his hard work all throughout this release. Welcome Ariel and thank him for all his contributions!
Downloading
jQuery 1.2.6:
- Recommended Hosted Code with Google: AJAX Libraries API
- jQuery Minified (15kb with Gzipping)
- jQuery Packed (30kb)
- jQuery Regular (100kb)
If you wish to checkout the full release from the Subversion repository, you can do so by following the instructions and checking out the source from the following location:
svn co http://jqueryjs.googlecode.com/svn/tags/1.2.6
Performance Improvements
Once again the jQuery team has worked hard to bring huge performance improvements in this release. As with previous releases we’ve expanded to look at many areas of the jQuery framework, looking for common pain points, and providing relief.
All data and test cases for the below performance improvements can be found in the the following jQuery 1.2.3 v. 1.2.6 Google Spreadsheet (results for Internet Explorer 6 were excluded in favor of Internet Explorer 7 due to their virtually-identical results).
Event Handling is 103% Faster
In analyzing intense application code (specifically operations such as drag-and-drop) we looked for ways in which universal changes could be made that would affect all users. A frequently-called piece of code was that of the jQuery event handler, any optimizations to it would dramatically improve the performance of all resulting frequently-called events. By focusing improvements here all frequently-called events that you have should see immediate benefits.
CSS Selectors are 13% faster
A number of optimizations have been made to internal jQuery methods, dramatically improving their performance, while providing measurable benefit to some of the most commonly used code in jQuery (such as the CSS Selector code).
For example the jQuery.map() method is now 866% faster and jQuery.extend() is 19% faster. These two changes have allowed for dramatic improvements in performance all throughout the library.
.offset() is 21% faster
Together with the improvements to jQuery’s event handling code optimizations of .offset() have allowed intense mouse-based operations to become much faster. For example jQuery UI’s drag-and-drop code is now over 300% faster because of these change (allowing you to achieve faster, smoother, drag-and-drop operations).
.css() is 25% faster
A method that’s frequently called (both internally and externally). The optimizations to this method are easily felt in others (like .offset(), for example).
New Features and Major Changes
Dimensions Plugin is Now Part of Core
The remaining methods of the Dimensions plugin, by Brandon Aaron, have been introduced into jQuery core, along with additional bug fixes and performance improvements. This plugin has seen considerable use amongst developers and plugin authors and has become a solid part of the jQuery ecosystem. We’ve been, slowly, introducing the most-used methods from the Dimensions plugin over the past couple releases - but with the release of 1.2.6 all remaining methods are now part of core.
If you’re upgrading your copy of jQuery to version 1.2.6 you can now opt to exclude the Dimensions plugin from your code.
The full documentation for Dimensions can be found on the jQuery documentation site (and is in the process of becoming integrated with the core jQuery documentation).
.attr() overhaul
The .attr() method has been completely overhauled (resolving about 15 outstanding bugs). Additionally, the method has been significantly simplified and optimized.
.toggle() can now accept more functions
Historically jQuery’s .toggle() function has accepted two functions (to be toggled in an even/odd manner). However that has been changed so that any number of functions can be provided and toggled by a mouse click.
$("div").toggle(function(){
$(this).removeClass("three").addClass("one");
}, function(){
$(this).removeClass("one").addClass("two");
}, function(){
$(this).removeClass("two").addClass("three");
});
You can now unbind bound .toggle() and .one() functions
function test(){ $(this).addClass("test"); }
$("div").one("click", test);
$("div").unbind("click", test);
$("div").toggle(test, test);
$("div").unbind("click", test);
.index() supports jQuery collections
jQuery’s .index() function has allowed you to find the location of a DOM element in the jQuery collection - now you can also specify a jQuery collection (the first element of which will be extracted and located in the original set).
var test = $("div.test");
$("div").index( test ) == 3
jQuery.makeArray can convert ANYTHING to an array.
jQuery’s internal .makeArray() method now converts any array-like object into a new array. Additionally it wraps all other objects as an array and returns the resulting set.
jQuery.makeArray( document.getElementsByTagName("div") )
// => [ div, div, div ]
jQuery.makeArray( true )
// => [ true ]
jQuery.makeArray()
// => []
beforeSend can cancel Ajax calls
The beforeSend Ajax callback has allowed developers to execute a piece of code prior to a request occurring - now that code can also verify the integrity of some parameters and cancel the resulting Ajax request (useful for tasks like form validation).
$.ajax({
beforeSend: function(){
return $("#input").val() == "";
},
url: "test.php"
});
Exposed Speeds
jQuery has a number of named animation speeds (such as ’slow’, ‘fast’, and ‘default’) you can now provide your own names for animation speeds, or modify the existing ones, by manipulating the jQuery.fx.speeds object.
jQuery.fx.speeds.slow = 1000;
$("#test").slideDown("slow");

June 4th, 2008 at 10:26 am
I am impressed. Keep up the good work. jQuery is the best Javascript Library out there, lean and fast. I love it.
June 4th, 2008 at 11:05 am
Nice work, thank you! jQuery has made my (coding) life so much better. Oh, and for anyone who hasn’t seen it, check out the livequery plugin, too.
June 4th, 2008 at 11:49 am
Bravo, bravo!
June 4th, 2008 at 12:17 pm
I love you guys! I’ve a lot of fun jquerying
June 4th, 2008 at 12:42 pm
Wow! I think performance updates might be my favorite updates because I don’t need to do anything and all of a sudden my site is twice as fast. Great work!
June 4th, 2008 at 12:48 pm
awesome guys! thanks
June 4th, 2008 at 12:54 pm
Woo!!! Because I’m working on a production app with a lot of “custom” tweaks and in-house fixes to many of my javascript libs (most of which use jQuery internally or as an option, like Ext-JS), I was quite nervous about upgrading, but it was almost a drop-in replacement.
I did have to use the compatibility plugins (I was using 1.1 previously) and make a tweak to adapt the dequeue function for interface.js, but everything else was completely painless, and I get to enjoy the bug fixes and enhanced performance across the board.
Thanks for all of the hard work guys, it is VERY much appreciated!!!
June 4th, 2008 at 1:31 pm
wow……..you guyz are really doing great……I always like jquery and love using this framework…I can’t wait to use the faster jquery…thanks a lotttt for this guyz
June 4th, 2008 at 1:41 pm
I am amazed at how simple jquery is. I tip my hat to you guys, for real.
June 4th, 2008 at 1:58 pm
*curtsies*
June 4th, 2008 at 2:03 pm
God bless you all and God bless jQuery
June 4th, 2008 at 2:04 pm
I love the fact that something is 866% faster. It doesn’t even matter how bad it may have been before; 866% improvement to ANYTHING is impressive.
Keep up the good work!
June 4th, 2008 at 2:05 pm
Thanks! Very much enjoying jQuery over here.
June 4th, 2008 at 2:32 pm
Using Google to serve jquery (http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js) is really good option, especially if you can’t set compressing on your server (lack of mod_defalte etc). Also, if more developers use it, then you will take even bigger advantage of caching (there’s a chance that jquery will load directly from cache then, even if someone visits your site for the first time). YUI takes advantage of it already.
June 4th, 2008 at 2:39 pm
jQuery is amazing. Why would you use anything else?
June 4th, 2008 at 2:52 pm
Thanks for all the hard work guys, jQuery is a masterpiece!
June 4th, 2008 at 2:56 pm
Real great ! jQuery is fantastic ! Your biggest fan
June 4th, 2008 at 3:17 pm
[…] John Resig and his team have come up with yet another release of one of the worlds best JavaScript-library: jQuery. Among the news in version 1.2.6 are better performance for a lot of different parts of the library and the inclusion of the much used Dimensions-plugin into the jQuery-core. […]
June 4th, 2008 at 3:25 pm
jQuery FTW! Seriously - you guys rock. Keep it up.
June 4th, 2008 at 3:49 pm
The developer I work with is all over this. With news like this, I’m glad that I too recommend it to my friends.
June 4th, 2008 at 3:50 pm
Wow, what an amazing release. My congrats go out to the jQuery team.
June 4th, 2008 at 4:12 pm
Awesome! jQuery rocks!
June 4th, 2008 at 4:29 pm
I’m curious, what were the changes that sped up the event handling to twice as fast? or rather what was slowing them down?
And as usual, great work guys. jQuery has been my favourite JS framework for a long time and it just keeps getting better.
June 4th, 2008 at 4:49 pm
@Eran: We spent a lot of time fixing cross-browser event issues in inefficient ways. Namely for every single event we were jQuery.extend-ing the original event object into a new object. Improving the performance of extend helped but so did optimizing the code to cherry-pick the exact things that we wanted to fix.
June 4th, 2008 at 4:52 pm
[…] jQuery 1.2.6 was released recently, with plenty of bug-fixes and speed improvements. Most notably event handling was sped up 103% and the dimensions plugin was integrated into the framework (the dimensions plugin is an API to calculate elements sizes in a cross-browser and reliable way). […]
June 4th, 2008 at 4:53 pm
Amazing great work! I love jQuery.
June 4th, 2008 at 4:55 pm
This is great. I’m especially glad you combined dimensions it was too fundamental to leave out. thank you!
June 4th, 2008 at 5:00 pm
It’s nice to know that you guys are adding new things into framework, but I hope that this is not the start of code bloating. Since first day I started using jQuery it was obvious that it was a start of a beautiful friendship. When I started using jQuery my eyesight improved, heartbeat increased & my appetite is much better. Thanks guys, great work on jQuery!
June 4th, 2008 at 5:16 pm
Terrific work guys! Many thanks for the great job.
June 4th, 2008 at 5:20 pm
Thank you so much. JQuery singularly brought the love back for programming. All of you guys and especially Mr Resig are geniuses. I salute you sirs!
Hip Hip! Hoorah!
June 4th, 2008 at 5:28 pm
Thanks for this. Will upgrade the lib at work first thing tomorrow! Even though, tbpfh, we barely use it yet…
To be frank, jquery is about the only thing that keeps me interested in my web dev job at all, right now. Most every other aspect, I’m really disenchanted and don’t much care to keep battering on the same old crap (that I already know) or learning it (the stuff I don’t). But jquery just… “smells” damn cool. Looking forward to pushing myself and learning it much more deeply when I rebuild our main site over the next few months.
June 4th, 2008 at 6:02 pm
Thanks kind sirs!
June 4th, 2008 at 6:15 pm
Great job! You are the best!
June 4th, 2008 at 6:27 pm
Great release! Keep up the good work!
June 4th, 2008 at 6:28 pm
@Vader
You don’t happen to know a Darth Vader do you?
I haven’t seen him since high school. Tell him I said “what’s up?”! Thanks!
June 4th, 2008 at 7:09 pm
Great, thanks for everything you’re doing!
And thanks for fixing attr(), it caused me some headaches under IE (coupled with form tags) and I always forgot to open a ticket but you already fixed it so thanks again!
June 4th, 2008 at 10:13 pm
I’m quite new to using jQuery, but I’m really excited to get into all the great stuff I’ll be able to do with it. Kudos jQuery Team!!
June 4th, 2008 at 11:53 pm
This is great. It keeps getting better and better. Thanks especially for integrating the dimensions plugin into the core
June 5th, 2008 at 2:27 am
[…] I can’t help but to notice the speed improvements of jQuery 1.2.6, released yesterday. It claims event handling is 103% faster. […]
June 5th, 2008 at 4:29 am
[…] jQuery […]
June 5th, 2008 at 7:40 am
Excellent travail, comme toujours ! Je suis impressionné de voir que la plupart des nouvelles versions arrivent encore à améliorer les performances en terme de vitesse !
Excellent job, as always! I am impressed to see that almost every new release is still able to improve speed performances!
Congratulations from Belgium
(jQuery is famous worldwide)
June 5th, 2008 at 9:04 am
[…] (Via jQuery Blog.) « Ganymede RC2 Packages Now Available for Download […]
June 5th, 2008 at 11:57 am
I just started using jQuery a few months ago, and I can’t believe how amazing it is. Not only has it made my life with JavaScript 100x easier, it has also replaced my use of xajax — not that it’s bad, it just doesn’t have the power and flexibility jQuery has in regards to AJAX (JSON being a huge one).
If there was some sort of annual award for best piece of software technology, you’d certainly get my vote…
June 5th, 2008 at 7:02 pm
[…] Источник: jQuery. Категория: jQueryАвтор: Spider Дата: 6 Июнь 2008 Время: 0:01 […]
June 6th, 2008 at 1:45 am
jQuery save me a lot of time. Always.
Thanks a lot guys.
June 6th, 2008 at 9:15 am
Well I can’t be left out of this!
Thanks a lot for this release. I have noticed a performance increase jQuery based apps.
jQuery is Simply The Best!
Thanks to jQuery Team! I just Love it!
How about some jQuery T-shirts, key-chains, pens, cups, etc? I would be willing to buy a few to help promote the lib
June 7th, 2008 at 1:10 am
Without jQuery we would have at least spent twice the time developing our site and not to mention the performance improvements.
Thanks for such an wonderful library. You guys rock.
June 7th, 2008 at 7:15 am
[…] Mit der vor wenigen Tagen vorgestellten jQuery-Version 1.2.6 steigerte das Entwicklerteam um John Resig die Ausführungsgeschwindigkeit ihrer Javascript-Bibliothek, über die wir bereits vor einem halben Jahr zum ersten Mal berichteten, vor allem im Bereich Event-Handlung enorm. Zudem wurden einige Feature überholt beziehungsweise erweitert. […]
June 9th, 2008 at 8:24 pm
Hi,
It seems to be a great release, thank you for the work.
Btw, there is a minor tab layout issue with IE 7.0 (PC).
There is a blank line between the tab header and the tab content. You check it at the ThemeRoller demo: http://ui.jquery.com/themeroller/?bgColorDefault=a96828&bgTextureDefault=11_white_lines.png&bgImgOpacityDefault=15&borderColorDefault=d4b182&fcDefault=fffae0&iconColorDefault=f8e1a0&bgColorHover=91571d&bgTextureHover=11_white_lines.png&bgImgOpacityHover=15&borderColorHover=a97228&fcHover=ffffff&iconColorHover=ffeebd&bgColorActive=f2e9c0&bgTextureActive=07_diagonals_small.png&bgImgOpacityActive=100&borderColorActive=d4b182&fcActive=9e3300&iconColorActive=8c2f03&bgColorContent=f2e9c0&fcContent=623b22&ffDefault=georgia,%20times%20new%20roman,%20serif&fwDefault=bold&fsDefault=1.2&fsDefaultUnit=em#bgColorDefault=b0b0b0&bgTextureDefault=06_inset_hard.png&bgImgOpacityDefault=50&borderColorDefault=cccccc&fcDefault=000000&iconColorDefault=000000&bgColorHover=a4b8d6&bgTextureHover=06_inset_hard.png&bgImgOpacityHover=50&borderColorHover=a97228&fcHover=000000&iconColorHover=000000&bgColorActive=ff9900&bgTextureActive=06_inset_hard.png&bgImgOpacityActive=100&borderColorActive=d4b182&fcActive=000000&iconColorActive=000000&bgColorContent=ffffff&fcContent=000000&ffDefault=arial&fwDefault=bold&fsDefault=11&fsDefaultUnit=px
June 10th, 2008 at 9:12 am
Fantastic. Good Work!!
June 10th, 2008 at 6:09 pm
I’m intrigued by your way of measuring improvements.
In my book 103% improvement in timing means that something finishes before you ask it to start.
I assume your calculation involves taking the “after” time and dividing it into the “before” time then subtracting 100%.
June 19th, 2008 at 9:13 am
Congrats to the best jQuery ever…
Is it possible to update the jQuery documentation in the next couple of weeks?
It’s because I (and many more .NET programmers) use the doc’s for creating a header file for Visual Studio 2008 Intellisense. (see http://www.infobasis.com/sandpit/jQuery-Intellisense - InfoBasis JQuery IntelliSense Header Generator).
June 20th, 2008 at 2:36 am
[…] Zwei populäre JavaScript Frameworks haben ein Update erfahren: jQuery ist auf die Versionsnummer 1.2.6 gerutscht und MooTools hat die Version 1.2 erreicht. [Zum dritten Mal P… Bookmark setzen: These icons link to social bookmarking sites where readers can share and discover new web pages. […]
June 21st, 2008 at 9:17 am
hi i want to learn more about latest java scripts and how easily that implements and interacts with asp.net 2005
send me some examples
for making efective and faster my web applications.
i m currentely as a programmer in krish compu soft pvt. ltd
June 24th, 2008 at 12:06 am
[…] jQuery 1.2.6 with some nice performance improvements […]
June 24th, 2008 at 2:40 am
[…] jQuery 1.2.6 with some nice performance improvements […]
June 24th, 2008 at 3:30 am
[…] * Post Revisioning * A “Press This” bookmarklet for tumblelog style quick posting * Caching of static files with Gears for faster Admin page loads * A new and improved image editing dialog that offers lots of control over the images in your posts * Theme previewing as seen on WordPress.com * Built-in word counting in the post editor * The ability to disable remote publishing for the security conscious * XML-RPC API for changing blog options * Better SSL support for the Admin * Hierarchy-aware paging in the Manage Pages and Manage Categories admin pages. * The ability to relocate your content directory * The ability to move wp-config.php out of your web root * Drag-and-drop sortable galleries * Customizable default avatars * Bulk delete, activate, and deactivate for plugins * Check box range selection with shift-click * TinyMCE 3.1.0.1 with lots of bug fixes * jQuery 1.2.6 with some nice performance improvements * jQuery UI 1.5 * Lots of bug fixes and performance improvements Kaynak : WordPress 2.6 Beta 1 boren.nu […]
June 24th, 2008 at 4:51 am
[…] jQuery 1.2.6 with some nice performance improvements […]
June 24th, 2008 at 5:22 am
[…] jQuery 1.2.6 によるいくつかのすばらしいパフォーマンスの改善 […]
June 24th, 2008 at 6:13 am
[…] jQuery 1.2.6 with some nice performance improvements — 升级到 jQuery 1.2.6,使得性能上有很大的提升。 […]
June 24th, 2008 at 7:10 am
[…] Вчера вышла первая бета версия WordPress 2.6. Релиз обещается к середине июля. Скачать WordPress 2.6 Beta 1 можно тут. Версия 2.6 не столь важный релиз, как выход 2.5 версии, но все же есть довольно много важных нововведений. * Post Revisioning * A “Press This” bookmarklet for tumblelog style quick posting * Caching of static files with Gears for faster Admin page loads * A new and improved image editing dialog that offers lots of control over the images in your posts * Theme previewing as seen on WordPress.com * Built-in word counting in the post editor * The ability to disable remote publishing for the security conscious * XML-RPC API for changing blog options * Better SSL support for the Admin * Hierarchy-aware paging in the Manage Pages and Manage Categories admin pages. * The ability to relocate your content directory * The ability to move wp-config.php out of your web root * Drag-and-drop sortable galleries * Customizable default avatars * Bulk delete, activate, and deactivate for plugins * Check box range selection with shift-click * TinyMCE 3.1.0.1 with lots of bug fixes * jQuery 1.2.6 with some nice performance improvements * jQuery UI 1.5 * Lots of bug fixes and performance improvements These icons link to social bookmarking sites where readers can share and discover new web pages. […]
June 24th, 2008 at 8:47 am
[…] Release Info: Post Revisioning A “Press This” bookmarklet for tumblelog style quick posting Caching of static files with Gears for faster Admin page loads A new and improved image editing dialog that offers lots of control over the images in your posts Theme previewing as seen on WordPress.com Built-in word counting in the post editor The ability to disable remote publishing for the security conscious XML-RPC API for changing blog options Better SSL support for the Admin Hierarchy-aware paging in the Manage Pages and Manage Categories admin pages. The ability to relocate your content directory The ability to move wp-config.php out of your web root Drag-and-drop sortable galleries Customizable default avatars Bulk delete, activate, and deactivate for plugins Check box range selection with shift-click TinyMCE 3.1.0.1 with lots of bug fixes jQuery 1.2.6 with some nice performance improvements jQuery UI 1.5 Lots of bug fixes and performance improvements […]
June 24th, 2008 at 8:51 am
[…] jQuery 1.2.6 with some nice performance improvements […]
June 24th, 2008 at 9:00 am
[…] jQuery 1.2.6 with some nice performance improvements […]
June 24th, 2008 at 9:08 am
[…] jQuery 1.2.6 的性能提升 […]
June 24th, 2008 at 9:27 am
[…] jQuery 1.2.6 with some nice performance improvements […]
June 24th, 2008 at 10:46 am
[…] jQuery 1.2.6 with some nice performance improvements […]
June 24th, 2008 at 12:14 pm
Actualizando, que es gerundio
Una de las cosas que he de llevar a cabo entorno a Gesbit, es procurar estar al tanto de las actualizaciones del software que forma ya parte del propio Gesbit. Por ejemplo, en los últimos días, han aparecido hasta dos actualizaciones del…
June 24th, 2008 at 12:46 pm
[…] jQuery 1.2.6 com uma boa perfomance improvisada […]
June 24th, 2008 at 2:52 pm
[…] jQuery 1.2.6 with some nice performance improvements […]
June 24th, 2008 at 3:43 pm
[…] jQuery 1.2.6 com uma boa perfomance improvisada […]
June 24th, 2008 at 4:48 pm
[…] jQuery 1.2.6 with some nice performance improvements […]
June 24th, 2008 at 6:28 pm
[…] jQuery 1.2.6 с некоторыми улучшениями производительности […]
June 24th, 2008 at 7:42 pm
[…] jQuery 1.2.6 with some nice performance improvements […]
June 24th, 2008 at 8:55 pm
[…] jQuery 1.2.6 with some nice performance improvements — 升级到 jQuery 1.2.6,使得性能上有很大的提升。 […]
June 24th, 2008 at 9:23 pm
[…] jQuery 1.2.6 with some nice performance improvements […]
June 25th, 2008 at 1:16 am
[…] * Ревизия записей; * Добавлен инструмент микроблоггинга “Нажми здесь” напоминающий быстрый постинг по типу tumblelog; * Кэширование статических файлов с Google Gears для быстрой загрузки страницы админа; * Новая и улучшеная настройка редактирования изображений и различный контроль изображений в постах; * Реализован предпросмотр шаблонов как на WordPress.com; * Встроенный счетчик слов в редакторе создания записи; * Возможность дистанционного отключения удаленных публикаций в целях безопасности; * XML-RPC API для изменения настроек блога; * Улучшена поддержка SSL для админки; * Панель администратора приобрела иерархическое разбиение на Управление страницами и Управление категориями; * Возможность перемещения директории содержимого ; * Возможность из корня сайта переместить файл wp-config.php; * Сортировка галереи способом drag-and-drop; * Аватары настраиваются по умолчанию; * Массовая активация, деактивация и удаление плагинов; * Устанавливать несколько чекбоксов методом shift+клик; * Большое количество исправлений в TinyMCE 3.1.0.1 с * Улучшена производительность jQuery 1.2.6 * jQuery UI 1.5 * Исправлено множество ошибок и улучшена производительность. […]
June 25th, 2008 at 2:08 am
[…] jQuery 1.2.6 with some nice performance improvements […]
June 25th, 2008 at 11:58 am
[…] - Revisão de posts - Utilização do Google Gears para carregamento de páginas - Novo editor de imagens com mais campos e possibilidades - Um editor para fazer preview de uma theme - Contador de palavras no editor de artigos - Possibilidade de desligar o acesso remoto - XML-RPC API para alterar as opções do blog - Suporte SSL melhorado no acesso ao painel de Admin - Possibilidade de remover o ficheiro wp-config.php da raíz do servidor - Galerias amovíveis - Possibilidade de escolher avatares pré-definidos - TinyMCE 3.1.0.1 com várias melhorias - jQuery 1.2.6 com melhoramentos na performance - Outros melhoramentos ao nível da performance e segurança […]
June 25th, 2008 at 3:53 pm
[…] jQuery 1.2.6 com melhoramentos de performance […]
June 26th, 2008 at 10:23 am
[…] Con questa versione sono stati aggiornati TinyMCE 3.1.0.1 che corregg molti bug, jQuery 1.2.6 con varie migliorie sul fronte delle prestazioni e jQuery UI 1.5, come sempre con questa nuova versione sono state apportate moltissime modifiche per correggere bachi e migliare le prestazioni di parti di codice oltre ad un arricchimento della documentazione presente nel codice stesso. […]
June 26th, 2008 at 6:57 pm
[…] jQuery 1.2.6 with some nice performance improvements […]
June 27th, 2008 at 10:06 am
[…] jQuery 1.2.6 com algumas melhorias agradáveis no desempenho; […]
June 27th, 2008 at 2:07 pm
[…] Update auf jQuery 1.2.6 mit besserer Performance […]
June 29th, 2008 at 3:11 am
[…] 升级到jQuery 1.2.6使得性能上有很大的改善 […]
June 30th, 2008 at 1:17 am
[…] jQuery 1.2.6 с некоторыми улучшениями производительности […]
July 1st, 2008 at 4:38 am
[…] jQuery 1.2.6 with some nice performance improvements […]
July 2nd, 2008 at 4:42 pm
[…] Gli aggiornamenti all’interfaccia prevedono anche l’aggiornamento di jQuery (ora alla versione 1.2.6), update che porta migliorie prestazionali. […]
July 7th, 2008 at 7:07 am
http://pitfalls.wordpress.com/2008/07/07/querying-it-jquery-way-getelementsbyclass/
July 8th, 2008 at 9:17 am
Really impressed with your efforts and the big community you having with jquery. no doubt jquery is the best. i am using prototype and i am a big fan of it but still i am having very good experience with jquery too.
July 13th, 2008 at 11:35 am
[…] Update auf jQuery 1.2.6 mit besserer Performance […]
July 16th, 2008 at 4:12 pm
[…] а так же ряд мелких нововедений - установка плагинов через ВЕБ - подсчёт слов - настраиваемые аватарки - полная поддержка SSL - исправление мелких багав редактора TinyMCE 3.1.0.1 - улучшение производительности в jQuery 1.2.6 […]
July 17th, 2008 at 11:27 am
[…] jQuery 1.2.6 with some nice performance improvements […]
July 23rd, 2008 at 12:20 am
[…] jQuery 1.2.6 with some nice performance improvements […]
August 1st, 2008 at 8:50 am
Hi,
How to have automatic menu expand in jquery: “1.2.6″
August 5th, 2008 at 5:17 am
[…] Update auf jQuery 1.2.6 mit besserer Performance […]
August 6th, 2008 at 2:07 am
[…] jQuery 1.2.6 with some nice performance improvements […]
August 11th, 2008 at 3:01 am
[…] jQuery liegt in Version 1.2.6 vor und erfreut uns durch mehr Performance. Als Bugfix Release ist ein Update empfohlen. […]
August 25th, 2008 at 7:43 am
Recently go on the Internet TV channels I stumbled upon on this and am happy to provide it to you. I was surprised, but the channel was obsolyutno free 24 / 7. Watch and enjoy.
Look TV Video
August 30th, 2008 at 7:26 am
Really impressed with your efforts and the big community you having with jquery. no doubt jquery is the best. i am using prototype and i am a big fan of it but still i am having very good experience with jquery too.
September 5th, 2008 at 11:56 am
[…] La información de esta nota fue interpretada de su fuente en ingles, la cual puede leerla en el Blog de JQuery. […]
September 20th, 2008 at 11:21 am
Hi webmaster!
September 20th, 2008 at 11:42 am
Hi webmaster!
September 20th, 2008 at 11:43 am
Hi webmaster!
September 25th, 2008 at 12:25 pm
[…] jQuery 1.2.6 с некоторыми улучшениями производительности […]