Ничего не понимаю почему тогда у меня не работает как надо:
(function($) {
$.fn.plugin2 = function(options) {
return this.each(function() {
var $this = $(this);
var setting = $.extend({
}, options);
$this.click(function(){
$('.too').show();
});
$('.too').click(function(e){
$this.hide();
});
});
};
}) (jQuery);
Может тут я что-то пропустил?