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.
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. http://dev.jquery.com/~john/slickjq/
Additionally, we tested the improved code base against some of the other popular selector libraries, again with the SlickSpeed test suite. http://dev.jquery.com/~john/slick/
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:
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:
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.
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). http://www.packtpub.com/jQuery/book/mid/100407j4kh3d * 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.
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.
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!
> 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.
> 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.http://dev.jquery.com/~john/slickjq/
> Additionally, we tested the improved code base against some of the > other popular selector libraries, again with the SlickSpeed test > suite.http://dev.jquery.com/~john/slick/
> 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:
> 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:
> 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.
> 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). > http://www.packtpub.com/jQuery/book/mid/100407j4kh3d > * 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.
> 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
> On Jul 1, 9:45 pm, "John Resig" <jere...@gmail.com> wrote: > > Hi Everyone -
> > 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.
> > 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.http://dev.jquery.com/~john/slickjq/
> > Additionally, we tested the improved code base against some of the > > other popular selector libraries, again with the SlickSpeed test > > suite.http://dev.jquery.com/~john/slick/
> > 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:
> > 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:
> > 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.http://dev.jquery.com/report/15
> > 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). > > http://www.packtpub.com/jQuery/book/mid/100407j4kh3d > > * 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.
> 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.
> 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. > http://dev.jquery.com/~john/slickjq/
> Additionally, we tested the improved code base against some of the > other popular selector libraries, again with the SlickSpeed test > suite. > http://dev.jquery.com/~john/slick/
> 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:
> 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:
> 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. > http://dev.jquery.com/report/15
> 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). > http://www.packtpub.com/jQuery/book/mid/100407j4kh3d > * 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.
> 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.
Marshall Salinger wrote: > Congratulations jQuery team. You guys rock!
> The news about jQuery UI is really exciting, I can't wait to test it out.
> Thanks, > Marshall
> John Resig wrote:
>> Hi Everyone -
>> 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.
>> 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. >> http://dev.jquery.com/~john/slickjq/
>> Additionally, we tested the improved code base against some of the >> other popular selector libraries, again with the SlickSpeed test >> suite. >> http://dev.jquery.com/~john/slick/
>> 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:
>> 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:
>> 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. >> http://dev.jquery.com/report/15
>> 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). >> http://www.packtpub.com/jQuery/book/mid/100407j4kh3d >> * 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.
>> 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
> The news about jQuery UI is really exciting, I can't wait to test it out.
> Thanks, > Marshall
> John Resig wrote:
> Hi Everyone -
> 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.
> 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.http://dev.jquery.com/~john/slickjq/ <http://dev.jquery.com/%7Ejohn/slickjq/>
> 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:
> 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:
> 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
> 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. > http://docs.jquery.com/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).http://www.packtpub.com/jQuery/book/mid/100407j4kh3d > * 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. > http://ajaxexperience.techtarget.com/
> 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.
> 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
WOW! That is an exhaustive list of features, enhancements and fixes for a point release. Jquery UI? For crying out loud, i dont know what to say... Am too excited that, i am replying to this email without even looking at it in svn. I hope jQuery UI is also as slim as jquery itself.
Thanks guys, you are creating a javascript revolution out there...
For those of my friends who are writing jquery books... I will be more than glad to do a thorough technical review on all the code examples on different browsers etc, or and verify them if you need a helping hand there. Feel free to drop me an email and it will be a honour.
> On 7/1/07, Christopher Jordan <chris.s.jor...@gmail.com> wrote:
> > I agree! You guys are the shizz! :o)
> > Chris
> > Marshall Salinger wrote:
> > Congratulations jQuery team. You guys rock!
> > The news about jQuery UI is really exciting, I can't wait to test it out.
> > Thanks, > > Marshall
> > John Resig wrote:
> > Hi Everyone -
> > 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.
> > 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.http://dev.jquery.com/~john/slickjq/
> > Additionally, we tested the improved code base against some of the > > other popular selector libraries, again with the SlickSpeed test > > suite.http://dev.jquery.com/~john/slick/
> > 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:
> > 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:
> > 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.http://dev.jquery.com/report/15
> > 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. > > http://docs.jquery.com/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).http://www.packtpub.com/jQuery/book/mid/100407j4kh3d > > * 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. > > http://ajaxexperience.techtarget.com/
> > 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.
On Jul 2, 11:45 am, "John Resig" <jere...@gmail.com> wrote:
> Hi Everyone -
> 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.
You can' t satisfy everyone... :-)
Prototype.js gets it's blazing selector speed (in Firefox) by using XPath in browsers that support document.evaluate. It's great that jQuery has a fast API for non-XPath browsers, but its speed in Firefox sux (comparatively). Are there plans to support XPath in capable browsers? Then you'll see jQuery as the fastest in all browsers, not just "the market leader".
And maybe that will cause wimp browsers to either lose marketshare or get full featured. ;-)
> Additionally, we tested the improved code base against some of the > other popular selector libraries, again with the SlickSpeed test > suite. > http://dev.jquery.com/~john/slick/
Bad news in Konqueror - see the attached screenshot. It says that jQuery.find returns something that is not an object. I have used Konqueror 3.5.7.
On the other hand good news for XUL users: Up to now I always had six uncaught exceptions from the jQuery code in my XUL application. Two of them have gone away. The javaScript console says that reading the property UnnamedClass.classes was not allowed.
The new speed improvements are paying off. I had a page where i displayed a popup (jqModal) and in IE6 the content of the page disappeared for a few seconds before displaying the popup but this is solved dropping in the new jQuery version.
> 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.
> 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. > http://dev.jquery.com/~john/slickjq/
> Additionally, we tested the improved code base against some of the > other popular selector libraries, again with the SlickSpeed test > suite. > http://dev.jquery.com/~john/slick/
> 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:
> 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:
> 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. > http://dev.jquery.com/report/15
> 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). > http://www.packtpub.com/jQuery/book/mid/100407j4kh3d > * 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.
> 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
> > Additionally, we tested the improved code base against some of the > > other popular selector libraries, again with the SlickSpeed test > > suite. > > http://dev.jquery.com/~john/slick/
> Bad news in Konqueror - see the attached screenshot. It says that > jQuery.find > returns something that is not an object. I have used Konqueror 3.5.7.
> On the other hand good news for XUL users: Up to now I always had six > uncaught > exceptions from the jQuery code in my XUL application. Two of them have > gone > away. The javaScript console says that reading the property > UnnamedClass.classes was not allowed.
> Christof
-- -- Greetings/Saludos de SeViR Cartagena, Murcia -Spain- visit my web http://rincon.sevir.org
> 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.
> 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. > http://dev.jquery.com/~john/slickjq/
> Additionally, we tested the improved code base against some of the > other popular selector libraries, again with the SlickSpeed test > suite. > http://dev.jquery.com/~john/slick/
> 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:
> 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:
> 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. > http://dev.jquery.com/report/15
> 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). > http://www.packtpub.com/jQuery/book/mid/100407j4kh3d > * 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.
> 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
> 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.
Glad to have the new version of jQuery out, the speed improvements are really nice. I'm trying it out with the datePicker plugin and it seems fine.
I'm having trouble getting the datePicker to work with the linked select elements example. I'm trying to make it loop through the document looking for elements with a class of 'date-select' and then set up a scoped set of events on the descendant select boxes and anchor tag. There's a bit much code to post in the email here's a link to the page I'm working on:
As far as I can tell, using $('a', this) etc.. should work but I'm getting no js errors and no datePicker. Has anyone done something like this with the datePicker before? It's for generated date selects so this is the best solution for the job.
> > 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.
> Great news! Good to have that out now! I found some issues with the > Tabs, but will write a seperate mail for that...
> --Klaus
-- Rob Desbois Eml: rob.desb...@gmail.com Tel: 01452 760631 Mob: 07946 705987 "There's a whale there's a whale there's a whale fish" he cried, and the whale was in full view. ...Then ooh welcome. Ahhh. Ooh mug welcome.
> ...jQuery has a fast API for non-XPath browsers, but its speed in Firefox > sux (comparatively).
I have to disagree with you on this. At this point, we're well within the selector speed range of the major libraries in Firefox, even without XPath and if you run the tests in IE6 or IE7, we're SUBSTANTIALLY faster than most. If you look at look at the results per selector as opposed to the aggregated score, you'll see that jQuery's selector performance is just fine.
At this point we will focus on our attention on enhancing other areas of the jQuery library but will certainly consider performance enhancements for v1.2.
Robert O'Rourke wrote: > Glad to have the new version of jQuery out, the speed improvements are > really nice. > I'm trying it out with the datePicker plugin and it seems fine.
> I'm having trouble getting the datePicker to work with the linked select > elements example. I'm trying to make it loop through the document > looking for elements with a class of 'date-select' and then set up a > scoped set of events on the descendant select boxes and anchor tag. > There's a bit much code to post in the email here's a link to the page > I'm working on:
> As far as I can tell, using $('a', this) etc.. should work but I'm > getting no js errors and no datePicker. Has anyone done something like > this with the datePicker before? It's for generated date selects so this > is the best solution for the job.
> Cheers, > Rob
Sorted it now, was a combination of muppetry and not understanding how $(this) works when a function is stored as a variable. If anyone wants the code help yourself, it's at the link above.
> > ...jQuery has a fast API for non-XPath browsers, but its speed in Firefox > > sux (comparatively).
> I have to disagree with you on this. At this point, we're well within > the selector speed range of the major libraries in Firefox, even without > XPath and if you run the tests in IE6 or IE7, we're SUBSTANTIALLY faster > than most. If you look at look at the results per selector as opposed to > the aggregated score, you'll see that jQuery's selector performance is > just fine.
> At this point we will focus on our attention on enhancing other areas of > the jQuery library but will certainly consider performance enhancements > for v1.2.
Congratulations on the new release, it's looking great. Can't wait for 1.2...
The only small problem I've had is with an old plugin I've been used for a while, which adds regular expression selectors: (function($){ $.extend($.expr['@'], { "=~": "z.match(RegExp(m[4]))!=null", "!~": "z.match(RegExp(m[4]))==null" }); $.parse[0] = /^\[ *(@)([a-z0-9_-]*) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/ i;
})(jQuery);
In 1.1.3, $.expr['@'] is null and causes an error. Has $.expr['@'] been dropped?
On Jul 2, 2:45 am, "John Resig" <jere...@gmail.com> wrote:
> 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.
> 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.http://dev.jquery.com/~john/slickjq/
> Additionally, we tested the improved code base against some of the > other popular selector libraries, again with the SlickSpeed test > suite.http://dev.jquery.com/~john/slick/
> 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:
> 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:
> 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.
> 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). > http://www.packtpub.com/jQuery/book/mid/100407j4kh3d > * 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.
> 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.
John, I have to put in a request from work to get them to pay for the trip up to Boston for the conference, when might we expect more details on the separate jQuery Conference?
On Jul 1, 9:31 pm, vulgarisoverip <pvulga...@gmail.com> wrote:
> Awesome, can't wait to try it! I hope it fixes some of the Safari > problems I've had with the 1.1.3 alpha.
Unfortunately, it appears as though Safari 1.3.2 crashes when jQuery loads instead of gracefully degrading and simply not working correctly in all cases. If you were having trouble with Safari 1.3.2 and jQuery's 1.1.3 alpha, the problems are not resolved in this release.
Is it on a specific type of functionality (eg: DOM selection, effects)? If you could help us limit it down, even providing a testbed, that would be a huge help for us.
Thanks,
Rey
John wrote: > On Jul 1, 9:31 pm, vulgarisoverip <pvulga...@gmail.com> wrote: >> Awesome, can't wait to try it! I hope it fixes some of the Safari >> problems I've had with the 1.1.3 alpha.
> Unfortunately, it appears as though Safari 1.3.2 crashes when jQuery > loads instead of gracefully degrading and simply not working correctly > in all cases. If you were having trouble with Safari 1.3.2 and > jQuery's 1.1.3 alpha, the problems are not resolved in this release.
There's no specific type of functionality that causes it to crash. It's just an outright crash when the library is parsed. My ticket with a test case on the issue is: http://dev.jquery.com/ticket/1331
On Jul 2, 1:31 pm, Rey Bango <r...@iambright.com> wrote:
> Is it on a specific type of functionality (eg: DOM selection, effects)? > If you could help us limit it down, even providing a testbed, that would > be a huge help for us.