Добрый день.
Делаю плагин. Структура примерно такова:
methods = {
init: function() {...},
messages: {
msgBox: function () {...},
toolTip: function () {...}
}
};
Обработчик вызова методов стандартный:
$.fn.myplugin = function(method) {
if (methods[method]) {
return methods[method].apply(this, Array.prototype.slice.call(arguments, 1));
}
else if (typeof method === 'object' || !method) {
return methods.init.apply(this, arguments);
}
else {
$.error("Method not found!");
}
};
Плагин я вызываю тоже стандартно:
$("#testdiv").myplugin()
Подскажите как вызвать подметод
toolTip из метода
messages?
Спасибо.