jQuery.prototype に init 関数があるのはなぜですか? jQueryのクロージャーに入れましたが、うまくいきます。これは私がしました:
(function( window, undefined ) {
var jQuery = function( selector, context ) {
return new init( selector, context, rootjQuery );
}
var init=function( selector, context, rootjQuery ) {
...
}
...
})(...)
ありがとう、
エリック J.