Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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);
share|improve this question
What are the odds of someone redifining the window or document ? – adeneo Oct 29 '12 at 23:49
The jQuery Plugin Authoring Guide might just have the answer for you. – bažmegakapa Oct 29 '12 at 23:49
1  
someFunc is scoped inside the .each function 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
@FabrícioMatté - even if it was moved outside the each function, it would be in the plugins scope and not a "public" function accessible outside the plugin scope. The way to go is usually to pass some parameter to the plugin function. – adeneo Oct 29 '12 at 23:53
1  
@FabrícioMatté - Yes, I knew you where aware of that, and in the question it pretty much says "It should look something like this $.pluggg.validation().", now that's dot notation (an object starting with $) and maybe just using an object literal instead of $.fn would be better? Who knows, it's just to vague! – adeneo Oct 30 '12 at 0:07
show 2 more comments

1 Answer

The general format I use for plugins is a little more expanded, like:

;(function($, window, document, undefined){
    var defaults = {
        label: 'yeahhhhh'
    };

    var methods = {
        "init": function (options) {
            options = $.extend({}, defaults, options);
            // Do whatever
        },
        "myFunc": function (options) {
            // Do whatever
        }
    };

    $.fn.pluggg = function(options) { 
        var args = arguments;
        var argss = Array.prototype.slice.call(args, 1);

        return this.each(function() {
            var $this = $(this);  // Might make sense to ignore this and just pass `this` to the following things
            if (methods[method]) {
                methods[method].apply($this, argss);
            }
            else if (typeof method === "object" || !method) {
                methods.init.apply($this, args);
            }
            else {
                $.error("Method " + method + " does not exist on jQuery.pollServer");
            }
        });
    };
})(jQuery, window, document);

So to call init, you can either use $("#a").pluggg({stuff: "stuff"}); or $("#a").pluggg("init", {stuff: "stuff"});. To call myFunc, you'd use the second example for init, but use "myFunc". Does that all make sense?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.