I have an object:

var mubsisapi = {
        step1   : function(){alert("a")}, 
        step2   : function(){alert("b")}
    }

$.extend(false, mubsisapi)
mubsisapi.step1().step2();

It is give step1() but not give step2(). dtep2() does not give an alert. How can I do this?

link|improve this question

64% accept rate
Edited to remove references to JSON … which you aren't using. – Quentin Sep 27 '11 at 14:17
feedback

5 Answers

up vote 5 down vote accepted

Not JSON, but javascript object. It's not fluent, but it can be:

var mubsisapi = {
        step1   : function(){alert("a"); return this;}, 
        step2   : function(){alert("b"); return this;}
    }

$.extend(false, mubsisapi)
mubsisapi.step1().step2();
link|improve this answer
feedback

You need to return this from the function if you want to chain it.

link|improve this answer
+1 beat me to it :) – AlienWebguy Sep 27 '11 at 14:18
+1, i'm too slow today – Joe Tuskan Sep 27 '11 at 14:19
feedback
var mubsisapi = {
        step1   : function(){alert("a"); return mubsisapi;}, 
        step2   : function(){alert("b"); return mubsisapi;}
    }
link|improve this answer
feedback

Yes, your object should look like this:

var mubsisapi = {
    step1   : function(){alert("a"); return this; }, 
    step2   : function(){alert("b"); return this; }
}

returning itself to allow chaining.

link|improve this answer
feedback

You cannot chaing your function calls. You either have to call them separately:

mubsisapi.step1();
mubsisapi.step2();

or you cann change your step1 function so you can chain them:

var mubsisapi = {
        step1   : function(){alert("a"); return mubsisapi;}, 
        step2   : function(){alert("b")}
    }

$.extend(false, mubsisapi)
mubsisapi.step1().step2();
link|improve this answer
Wrong :) Delete before you get downvoted. – AlienWebguy Sep 27 '11 at 14:19
Thank you to everyone – Gürkan Pala Sep 27 '11 at 17:32
feedback

Your Answer

 
or
required, but never shown

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