Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8294117
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T14:05:34+00:00 2026-06-08T14:05:34+00:00

I am writing a javascript library to abstract ajax requests to my HTTP API.

  • 0

I am writing a javascript library to abstract ajax requests to my HTTP API.
Each of my javascript functions is a wrapper for jquery’s ajax call, which makes a callback to the user on completion.

Eg.

mylib.doThing( "foo", { success:function(){alert("done");});

In the case where I want to execute mylib.doFoo twice in series, I have something like:

mylib.doThing( "foo", { success:function(){ mylib.doThing( "bar", { success:function(){alert("done");}); });

For anything more that two steps, this gets messy very quickly.

Is it possible to provide a cleaner syntax, perhaps more like the following? And how would I need to implement mylib.doThing()?

mylib.doThing("foo").mylib.doThing("bar").alert("done");
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T14:05:35+00:00Added an answer on June 8, 2026 at 2:05 pm
    function doThingFluent(a, b) {
      return {
        _name : a,
        _chainedCall : b,
        doMoreThingFluent : function(a1) {
          return doThing(a1, this);
        },
        done : function(callback) {
          var chained = this._chainedCall;
          var name = this._name;
          while (chained) {
            callback = function(n, c) {
              return function() {
                mylib.doThing(n, { success : c });
              };
            } (name, callback);
            name = chained._name;
            chained = chained._chainedCall;
          }
    
          mylib.doThing(name, {success: callback});
        }
     };
    
     doThingFluent("foo").doMoreThingFluent("bar").done(function(){alert("done");})
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing a simple Javascript library that makes use of some WebGL code. I'd
I'm writing a javascript library and I need to use jquery's append method to
For this userscript I'm writing, I need to use a third-party JavaScript library which
So I'm writing a Javascript library that takes x,y coordinates and uses them to
I'm writing a JavaScript application, and I found a nice library qtip2 . My
I have just started learning Jquery and am new to writing javascript (I am
I am in the process of writing a small javascript library to make form
I'm writing a JavaScript parser and while testing it on the prototype.js library, it
Can anyone suggest a pattern that can be used for writing a JavaScript API
I'm writing a Haskell to Javascript code generator, using GHC as a library. Since

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.