Over 800 Lines of jQuery Later…

Buy this Book at Amazon.com!I am not being sarcastic: with jQuery you do write less and do more. The ‘over 800 lines’ is less than what is needed for my YUI 2.x JavaScript base. Apart from the brilliant syntax, much of this reduction is due to the plug-in culture of jQuery. I’m sure jQuery veterans would ask, why would need even 800 lines? These are the generalities that I’m for:

Another important bit is the jQuery.extend() function. It took me way too long to see its importance in “name-spacing”:$.extend({rx:{}}); //$.rx

$.extend($.rx, {client:{}}); //$.rx.client I use the term extension function for jQuery procedures that are not chaining the jQuery object. You don’t need a selector query to get these helpers. The term extension method refers to procedures in the jQuery chain.

rasx()