добрый день,
я разрабатываю плагин для jQuery и столкнулся с проблемой
(function($) {
var opt;
var methods = {
init: function(options) {
opt = $.extend({
uid: 0
},
options
);
},
show: function() {
alert('show');
},
hide: function() {
},
update: function(content) {
}
};
// jQuery plugin
$.monitor = function(method) {
var $this = $(this);
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 {
/* method undefined */;
}
};
})(jQuery);
вызов:
$.monitor('start');
этот код завешивает намертво страницу
что не так?