Why is the init function in jQuery.prototype? I put it in jQuery closure and it works fine. I have done this:
(function( window, undefined ) { var jQuery = function( selector, context ) { return new init( selector, context, rootjQuery ); } var init=function( selector, context, rootjQuery ) { ... } ... })(...)
Thanks,
Eric J.
source share