I am looking for a way to include a public accessible function in a plugin, but I am still learning jQuery/javascript so I cant get it to work proper. I want to access some code in the plugin, in this example the function called someFunc. So how should I do this, whats the best way?
It should look something like this $.pluggg.validation().
// my plugin wrapper
;(function($, window, document, undefined){
$.fn.pluggg = function(options) {
options = $.extend({}, $.fn.pluggg.options, options);
return this.each(function() {
var obj = $(this);
function someFunc(){
alert(options.label);
}
});
};
$.fn.pluggg.options = {
label: 'yeahhhhh'
};
})(jQuery, window, document);
someFuncis scoped inside the.eachfunction callback scope, you will have to move it to a different scope if you want to access it from the jQuery context. – Fabrício Matté Oct 29 '12 at 23:50