I am trying to write a "good" jQuery Plugin structure. I am trying to follow "best practices" from jQuery.com and others.
But I am little bit confused about prototype.
Should I use it or not ? And Is the actual structure looks good or terrible ?
Thanks !
(function( $ ){
var defaults = { /* ... */ },
publicMethods = {
add: function(options){
var $this = $(this);
// ...
return $this;
}
},
privateMethods = {
init: function(options) {
var $this = $(this);
return $this;
},
click: function() {
//...
}
};
$.fn.tooltip = function(method) {
var args = arguments;
$(this).each(function() {
if ( publicMethods[method] ) {
return publicMethods[ method ].apply( this, Array.prototype.slice.call( args, 1 ));
} else if ( typeof method === 'object' || ! method ) {
return privateMethods.init.apply( this, args );
} else {
$.error( 'Method ' + method + ' does not exist on jQuery.tooltip' );
}
});
};
})( jQuery );
.slice()method. If you're following "best practices", then is there some reason you'd think your code would be terrible? – squint Feb 25 '12 at 16:23fna reference to theprototypeobject, presumably because it's shorter. So when you do$.fnyou're really doing$.prototype. Try this:alert($.fn === $.prototype);– squint Feb 25 '12 at 16:39