Gnarf caused global pollution of the sphere, I would add functions.
You might want to use a helper function, for example:
(function($){ // Our code here... $.fn.myPluginFunction = function () { ... var x = foobalizeTheFrobmaster(this.offset()) ... } function foobalizeTheFrobmaster(pos) { // do something useful return something; } })(jQuery);
Thus, the internal function foobalizeTheFrobmaster() completely hidden in our closure.
source share