Its always a great morning when you find out a fantastic library such as jQuery has been updated to a new version with more benefits and much better performance overall, it offers a lot of handy improvements to help all of us as developers including a re-architected version of the Sizzle engine which drives the most powerful JavaScript selector engine I personally have ever used.
Other features include vendor prefixed properties so no longer do we have to do things like:
$('element').css({
'-webkit-transform' : 'rotate(90deg)',
'-moz-transform' : 'rotate(90deg)',
'-ms-transform' : 'rotate(90deg)',
'-o-transform' : 'rotate(90deg)',
'transform' : 'rotate(90deg)'
});
Now all we need to do is this:
$('element').css('transform', 'rotate(90deg)');
I think this feature alone will make my life easier since now I won’t need to contend with un-needed overhead that otherwise slowed down performance, for a full list of changes, fixes and new features see the following url.



