New event APIs in jQuery 1.7 provide for an improved, and quicker, way to bind to events and refactoring has led to improved delivery performance on delegated events.
According to jQuery blog, the major "big item" in jQuery 1.7 is the the inclusion of new event APIs, .on() and.off() that unify all the ways of attaching events to a document in jQuery and have the advantage of being shorter to type!
$(elements).on( events [, selector] [, data] , handler );
$(elements).off( [ events ] [, selector] [, handler] );
When a selector is provided, .on() is similar to .delegate() in that it attaches a delegated event handler, filtered by the selector. When the selector is omitted or null the call is like .bind() . There is one ambiguous case: If the data argument is a string, you must provide either a selector string or null so that the data isn’t mistaken as a selector. Pass an object for data and you’ll never have to worry about special cases.
Although all the existing event binding and unbinding methods are still available, the use of .on() and.off() is recommended for new projects and the blog has examples of mapping between them and the older methods.
jQuery 1.7 event handling has been refactored to making delegated events faster and the result reported in this chart is that delegated events are delivered in about half the time they took in 1.6.4.
This release also offers better support for HTML5 in older versions of Internet Explorer to overcome the problem that IE 6/7/8/ strip out new HTML5 tags such as <section>. It also fixes a problem that earlier releases had with toggling animations.
Three other enhancements are that jQuery now supports the AMD API; the jQuery.Deferred object has been extended with new progress handlers and notification methods; and there is a new method jQuery.isNumeric() to discover if an argument is numeric - pass it an argument of any type and it returns true or false as appropriate.
More information
JQuery 1.7 Released
List of all API changes.
Dowload the code from the jQuery CDN (Content Delivery Network) at http://code.jquery.com/jquery-1.7.js (or in minified form http://code.jquery.com/jquery-1.7.min.js).
To be informed about new articles on I Programmer, subscribe to the RSS feed, follow us on Twitter or Facebook or sign up for our weekly newsletter.
Random Gifts For Programmers 24/11/2024
Not really random. Not even pseudo random, more stuff that caught my attention and that I, for one, would like to be given. And, yes, if I'm not given them, I'd probably buy some for myself.
|
Programmer Gifts - Pi For Xmas 13/12/2024
The holiday season is a good time to learn about computers - you have the time. But where to start? Our advice is to ignore the pudding and go for a Pi.
| More News |
|