Data реестр
function() { // функция init
var init = $(this).data('mySimplePlugin');
if (init) {
return this;
} else {
$(this).data('mySimplePlugin', true);
return this.on('click.mySimplePlugin', function(){
$(this).css('color', options.color);
});
}
}Last updated