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