On Aug 14, 4:05 pm, "Benjamin Sterling" <[EMAIL PROTECTED]> wrote: > Stephan, > I believe it is possible, M. Alsup does just that in is cycle > plugin:http://malsup.com/jquery/cycle/jquery.cycle.all.js?v1.4
That *almost* does what i'm looking for, but not quite. In that case, a single plugin uses child objects to hold the transitions. That is, in effect, a namespace in and of itself. But what i'm looking for is: $(...).malsup.cycle(...); Such that all of Malsup's plugins could be placed under the 'malsup' namespace. My initial attempts to do this in jQ have failed so far, e.g.: if( ! 'myns' in jQuery.fn ) { jQuery.fn.myns = {}; } jQuery.fn.myns.myPlugin = function(...){...}; $(...).myns.myPlugin(...);