On May 3, 8:59 am, Ariel Flesler <afles...@gmail.com> wrote: > Fixed:http://dev.jquery.com/changeset/6334
This link was very useful. It taught me that fn in the following construction means prototype. (function($) { $.fn.someFunctionName function( ) { This functions code block }; })(jQuery); So, when I create a jQuery method, I am actually adding a property to the jQuery object. Roddy