vote up 1 vote down star
2

Hello,

(function($){   

    $.a.b  = {

    	title: "ABC",

    	init: function (id) {
                 /* do something here */
                  return id+'a';

              }




    };

})(jQuery);

When I try to call $.a.b.init('t'); it does not work, I mean it does not return as expected. Any suggestions?

The problem is not that $.a.b.init('t') is not working. Problem is that it returns the code of the whole function instead of returning say a string.

Thank you for your time.

flag

75% accept rate
The code as posted works well, besides the $.a.b thing: jsbin.com/eqaji . Typically, you'll get the source of the function if you don't start it, e.g. alert($.a.b.init); and not alert($.a.b.init('parameter'));, so there isn't much more I can think of without more code. – Kobi Sep 21 at 16:34

3 Answers

vote up 7 vote down check

try

$.a = [];
$.a.b  = { ... }

or even better:

$.a = {b: {
     title: "",
     init: ...
}};

When using $.a.b a is undefined, so you cannot add to it.

link|flag
2  
also, install firebug so you can see these errors. – Ramblingwood Sep 21 at 11:26
1  
@Ramblingwood - invaluable tool. But even the error console can help here: Ctrl+Shift+J on Firefox. – Kobi Sep 21 at 11:27
vote up 4 vote down

Since $.a is not yet defined you cannot set the b property. First you'll need to create $.a. Alternatively, use a namespacing helper:

$.namespace = function(ns) {
    var cur = $, split = ns.split('.');
    while (split[0]) {
        cur = cur[split.shift()] = {};
    }
    return cur;
};

$.namespace('a').b = { ... };

It can also be used with deeper namespaces:

$.namespace('a.b.c.d.e.f').g = 123;
$.a.b.c.d.e.f.g; // => 123
link|flag
Interesting and weird. I guess if you use that a lot you can add it for all objects, not just jQuery. – Kobi Sep 21 at 11:55
vote up 1 vote down

What exactly do you want to do? If you are writting jQuery function or a plugin please check this:

http://docs.jquery.com/Plugins/Authoring

link|flag

Your Answer

Get an OpenID
or

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