そのため、関数をオーバーライドしようとしていますが、そのメソッドには元のメソッドが含まれていますjQuery.extend()
。
var origFunction = $.fn.pluginFunction;
$.fn.extend({
pluginFunction: function() {
// `origFunction` is available via Closure,
// now how can I declare the $.extended function here
// to preserve the original methods and then override
// only the following object?
myObject = {
'key1' : 'val1',
'key2' : 'val2',
}
}
});