Blog

Blog » jQuery 1.2.6: Events 100% faster

Posted June 4th, 2008 by John Resig

jQuery 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:

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");

105 Responses to “jQuery 1.2.6: Events 100% faster”

  1. Aceman Says:

    I am impressed. Keep up the good work. jQuery is the best Javascript Library out there, lean and fast. I love it.

  2. Duane Johnson Says:

    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.

  3. Andrew Chalkley Says:

    Bravo, bravo!

  4. ricardoe Says:

    I love you guys! I’ve a lot of fun jquerying :)

  5. Joshua Davey Says:

    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!

  6. ricky Says:

    awesome guys! thanks

  7. Takuan Daikon Says:

    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!!!

  8. Roshan Bhattarai Says:

    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

  9. Don Charlton Says:

    I am amazed at how simple jquery is. I tip my hat to you guys, for real.

  10. Gratiana Terestian Says:

    *curtsies*

  11. Dan Finch Says:

    God bless you all and God bless jQuery

  12. Corey Dutson Says:

    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!

  13. Ori Peleg Says:

    Thanks! Very much enjoying jQuery over here.

  14. Przemek Sobstel Says:

    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.

  15. Caleb Says:

    jQuery is amazing. Why would you use anything else?

  16. Tony Landis Says:

    Thanks for all the hard work guys, jQuery is a masterpiece!

  17. Oliv G. Says:

    Real great ! jQuery is fantastic ! Your biggest fan :)

  18. A perspective on jQuery 1.2.6’s performance at Bugs in the Machinery Says:

    […] 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. […]

  19. Sean Says:

    jQuery FTW! Seriously - you guys rock. Keep it up.

  20. devolute Says:

    The developer I work with is all over this. With news like this, I’m glad that I too recommend it to my friends.

  21. sunsean Says:

    Wow, what an amazing release. My congrats go out to the jQuery team.

  22. Jeff Sarmiento Says:

    Awesome! jQuery rocks!

  23. Eran Galperin Says:

    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.

  24. John Resig Says:

    @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.

  25. techfounder » jQuery development marches on (1.2.6) Says:

    […] 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). […]

  26. Justin Hernandez Says:

    Amazing great work! I love jQuery.

  27. Evan Says:

    This is great. I’m especially glad you combined dimensions it was too fundamental to leave out. thank you!

  28. sheshnjak Says:

    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!

  29. Joost Says:

    Terrific work guys! Many thanks for the great job.

  30. Mohammed Says:

    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!

  31. steve Says:

    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.

  32. shuns Says:

    Thanks kind sirs!

  33. Vader Says:

    Great job! You are the best!

  34. David Parker Says:

    Great release! Keep up the good work!

  35. Chris Says:

    @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!

  36. michele Says:

    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! ;-)

  37. Chris Missal Says:

    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!!

  38. Cory S.N. LaViska Says:

    This is great. It keeps getting better and better. Thanks especially for integrating the dimensions plugin into the core :)

  39. i.justrealized: jQuery 1.2.6 released, events 100% faster Says:

    […] I can’t help but to notice the speed improvements of jQuery 1.2.6, released yesterday. It claims event handling is 103% faster. […]

  40. Blog Archive » A Week of Web Releases Cake Solutions Team Blog Says:

    […] jQuery […]

  41. Michaël Says:

    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)

  42. jQuery 1.2.6: Events 100% faster « outaTiME Says:

    […] (Via jQuery Blog.) « Ganymede RC2 Packages Now Available for Download […]

  43. pRtkL xLr8r Says:

    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…

  44. jQuery 1.2.6 | АяксЛайн.ру Says:

    […] Источник: jQuery. Категория: jQueryАвтор: Spider Дата: 6 Июнь 2008 Время: 0:01    […]

  45. Fabio Says:

    jQuery save me a lot of time. Always.
    Thanks a lot guys.

  46. xwisdom Says:

    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

  47. seagull Says:

    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.

  48. Effizientere und schnellere Event-Steuerung dank jQuery 1.2.6 | Ajaxschmiede.de Says:

    […] 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. […]

  49. Tab layout issue with IE 7.0 Says:

    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

  50. Javier Tapia Says:

    Fantastic. Good Work!!

  51. Mike Gale Says:

    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%.

  52. Kristof Says:

    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).

  53. AJAX Frameworks Update | Says:

    […] 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. […]

  54. gomsy Says:

    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

  55. » WordPress 2.6 Beta 1 boren.nu Says:

    […] jQuery 1.2.6 with some nice performance improvements […]

  56. Download now - Wordpress 2.6 is out now for Beta 1 Says:

    […] jQuery 1.2.6 with some nice performance improvements […]

  57. WordPress 2.6 Beta 1-TurkForum.Net Says:

    […] * 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 […]

  58. Wordpress versi 2.6 beta 1 sudah rilis | KopiOnline.com Says:

    […] jQuery 1.2.6 with some nice performance improvements […]

  59. わーどぷれすっ! » WordPress 2.6 ベータ 1 Says:

    […] jQuery 1.2.6 によるいくつかのすばらしいパフォーマンスの改善 […]

  60. WordPress 2.6 Beta 1 Says:

    […] jQuery 1.2.6 with some nice performance improvements — 升级到 jQuery 1.2.6,使得性能上有很大的提升。 […]

  61. WordPress 2.6 Beta 1 | protusi Says:

    […] Вчера вышла первая бета версия 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. […]

  62. WordPress 2.6 Beta 1 | FlishFun.com Says:

    […] 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 […]

  63. WordPress 2.6 Beta 1 | Tadd Mencer Says:

    […] jQuery 1.2.6 with some nice performance improvements […]

  64. WordPress 2.6 Beta 1 - pestaola.gr blog Says:

    […] jQuery 1.2.6 with some nice performance improvements […]

  65. Wordpress 2.6 bata1版本 新功能详解 | 帕兰映像 Says:

    […] jQuery 1.2.6 的性能提升 […]

  66. WordPress 2.6 Beta 1 erschienen | Caschys Blog Says:

    […] jQuery 1.2.6 with some nice performance improvements […]

  67. iTechnologize » WordPress 2.6 Beta 1 Says:

    […] jQuery 1.2.6 with some nice performance improvements […]

  68. Bitácora de Gesbit Says:

    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…

  69. BlogTuga | Wordpress 2.6 Beta 1 Says:

    […] jQuery 1.2.6 com uma boa perfomance improvisada […]

  70. Wordpress 2.6 New Under The Hood Features - ShoeMoney® Says:

    […] jQuery 1.2.6 with some nice performance improvements […]

  71. Wordpress 2.6 Beta 1 | WordPress-PT Says:

    […] jQuery 1.2.6 com uma boa perfomance improvisada […]

  72. WordPress 2.6 Right Around The Corner | Jeffro2pt0 Says:

    […] jQuery 1.2.6 with some nice performance improvements […]

  73. Релиз Wordpress 2.6 beta1 | Вебмастеру посвящается... Says:

    […] jQuery 1.2.6 с некоторыми улучшениями производительности […]

  74. Download bản WordPress 2.6 Beta 1 | Việt Tutorial [Viettut.info] Says:

    […] jQuery 1.2.6 with some nice performance improvements […]

  75. WordPress 2.6 Beta 1 at WordPress 2.6 Beta 1 Says:

    […] jQuery 1.2.6 with some nice performance improvements — 升级到 jQuery 1.2.6,使得性能上有很大的提升。 […]

  76. 空想枫 - WordPress 2.6 Beta 1发布 Says:

    […] jQuery 1.2.6 with some nice performance improvements […]

  77. Вышел релиз Wordpress 2.6 Beta 1 | SocialTrend Says:

    […] * Ревизия записей; * Добавлен инструмент микроблоггинга “Нажми здесь” напоминающий быстрый постинг по типу 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 * Исправлено множество ошибок и улучшена производительность. […]

  78. Gabfire web design » The steps of WordPress 2.6 Says:

    […] jQuery 1.2.6 with some nice performance improvements […]

  79. Wordpress 2.6 com grandes melhorias | Wordpress Love - Themes, Plugins e tudo para Wordpress, em Português Says:

    […] - 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 […]

  80. WordPress 2.6 Beta 1 | Open Mania Says:

    […] jQuery 1.2.6 com melhoramentos de performance […]

  81. WordPress 2.6 le ultime novità » Archivi Blog » WordPress Italy Says:

    […] 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. […]

  82. WordPress 2.6 Adds All the Extra Goodies | Green Mountain Geek Says:

    […] jQuery 1.2.6 with some nice performance improvements […]

  83. Dicas Weblogs » WordPress 2.6 - O que tem de bom? Says:

    […] jQuery 1.2.6 com algumas melhorias agradáveis no desempenho; […]

  84. MoehBlog.de> » Neuerungen in WordPress 2.6 - Zu oft was Neues Says:

    […] Update auf jQuery 1.2.6 mit besserer Performance […]

  85. WordPress最新版本 | 狂舞网络 Says:

    […] 升级到jQuery 1.2.6使得性能上有很大的改善 […]

  86. Чем же хорош WP 2.6? Тестируем beta 1 | InGeekLog: Блоггинг как стиль жизни Says:

    […] jQuery 1.2.6 с некоторыми улучшениями производительности […]

  87. Wordpress keeps going, WP 2.6 is well on it’s way | nomad-one consulting Says:

    […] jQuery 1.2.6 with some nice performance improvements […]

  88. Wordpress 2.6, chi lo aspetta con me? | Cabrino Simone’s Blog Says:

    […] Gli aggiornamenti all’interfaccia prevedono anche l’aggiornamento di jQuery (ora alla versione 1.2.6), update che porta migliorie prestazionali. […]

  89. Abhishek Says:

    http://pitfalls.wordpress.com/2008/07/07/querying-it-jquery-way-getelementsbyclass/

  90. Farrukh Momin Says:

    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.

  91. ocean90’s weblog » Wordpress 2.6 RC1 erschienen Says:

    […] Update auf jQuery 1.2.6 mit besserer Performance […]

  92. Релиз WordPress 2.6 - что нового ? | Analyse|that Says:

    […] а так же ряд мелких нововедений - установка плагинов через ВЕБ - подсчёт слов - настраиваемые аватарки - полная поддержка SSL - исправление мелких багав редактора TinyMCE 3.1.0.1 - улучшение производительности в jQuery 1.2.6 […]

  93. WordPress Tweaks » Blog Archive » WordPress 2.6 Beta 1 Says:

    […] jQuery 1.2.6 with some nice performance improvements […]

  94. Softonix.com » Blog Archive » WordPress 2.6 Beta 1 Says:

    […] jQuery 1.2.6 with some nice performance improvements […]

  95. Ultimate Says:

    Hi,

    How to have automatic menu expand in jquery: “1.2.6″

  96. Wir fahren mit Wordpress 2.6 | Promoter Blog Says:

    […] Update auf jQuery 1.2.6 mit besserer Performance […]

  97. FunBlog :: Grab The WordPress 2.6 Final Version Now! :: August :: 2008 Says:

    […] jQuery 1.2.6 with some nice performance improvements […]

  98. PHP Blogger: +++ Updates +++ Updates +++ - Ein PHP Blog auf deutsch Says:

    […] jQuery liegt in Version 1.2.6 vor und erfreut uns durch mehr Performance. Als Bugfix Release ist ein Update empfohlen. […]

  99. Liona Berani Says:

    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

  100. liseli kızlar Says:

    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.

  101. Pereyrada » Jquery 1.2.6: Eventos 100% más rápidos Says:

    […] La información de esta nota fue interpretada de su fuente en ingles, la cual puede leerla en el Blog de JQuery. […]

  102. Kazelinh Says:

    Hi webmaster!

  103. Kazelbcr Says:

    Hi webmaster!

  104. Kazelcvy Says:

    Hi webmaster!

  105. Русский WordPress 2.6 (beta1) Lecactus Edition - Lecactus Home Says:

    […] jQuery 1.2.6 с некоторыми улучшениями производительности […]

Leave a Reply