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 7986381
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T11:50:24+00:00 2026-06-04T11:50:24+00:00

A quick question on how to use Jquery.deferred to make a slow synchronous function

  • 0

A quick question on how to use Jquery.deferred to make a slow synchronous function return a promise instead.
What I’ve done so far is this :

function sayIt(ms) {
    setTimeout( function() { console.log('what I say'); }, ms);
} 

function doIt() {
    return $.Deferred( function() { sayIt(2000); }).promise();
}


doIt().then( function() { console.log('ah'); });

the sayIt(2000) always goes through but the chained function after the ‘then’ never fires.

If I do this :

doIt().then( console.log('ah'));

the ‘ah’ comes up right away, and then the ‘what I say’ 2000ms later – what I want is of course the opposite – that after two seconds I get ‘what I say’ and then ‘ah’ right after.

Any suggestions appreciated!

  • 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-04T11:50:26+00:00Added an answer on June 4, 2026 at 11:50 am

    To do something synchronously, but still use a promise, do:

    function slowPromise() {
    
        var def = $.Deferred();
    
        // do something slow and synchronous
        ...
    
        // resolve the deferred with the result of the slow process
        def.resolve(res);
    
        // and return the deferred
        return def.promise();
    }
    

    The effect is that you still get a promise, but that promise is already resolved, so any .then() which is subsequently registered on it proceeds immediately.

    The advantage of this pattern is that if you subsequently replace the synchronous code with something asynchronous the function still has the same external interface.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

quick question, is it secure to use the jQuery.post function in jQuery to pass
quick question. I am trying to use either javascript, jquery, or php to make
Quick question. I have an app that use a native DLL through PInvoke, this
Just a quick question. When I use the _() function provided by the Pylons
I have a quick question of how I can use jQuery tabs (you click
Hey quick question, I am wondering Do big sites use php's getenv function to
I have a quick, beginners-type-question. If I were to use jQuery and some other
Quick question regarding this Socket(String host, int port) If I use these arguments in
Hopefully a quick question here. Can you use a function's returned value in a
I've a quick question. To call an action through jQuery (to use AJAX), do

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.