私はこの簡単なコードを持っています:
(function($) {
$.fn.flyInModal = function() {
alert('fly in?');
};
})(jQuery);
を実行してコンソールからアクセスできますjQuery.fn.flyInModal()
が、試しjQuery.flyInModal()
てみると次のように返されます。
TypeError: Object function (e,t){return new v.fn.init(e,t,n)} has no method 'flyInModal'
編集: jQuery.prototype.flyInModal()
も機能します。
ドキュメントを読むと、この方法でアクセスできるはずです。何か不足していますか?