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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T08:22:21+00:00 2026-05-16T08:22:21+00:00

In Javascript we can declare a variable and we can call a function. The

  • 0

In Javascript we can declare a variable and we can call a function. The function will return a value and will be assigned to the variable. Is this possible in jQuery?

I want to know if my previous function is finished or not. I want to get the result success or failure and call another function based on first function’s result

I use a function setTimeout for blockUI.

How can I check if that timeout is due to another function?

Do .val or $.get work for the above purposes?

  • 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-05-16T08:22:21+00:00Added an answer on May 16, 2026 at 8:22 am

    UPDATE: Based on your comments…

    First question:

    You should probably look at some of the blockUI demos.

    It looks like blockUI has a callback onBlock: that calls a function after the fadeIn is done.

    onBlock: function() { 
       alert('Page is now blocked; fadeIn complete'); 
    }
    

    Second question:

    jQuery is just a library of javascript code, therefore you can assign functions to variables the same way you always do.

    var a = function dosome() {
        // do something
    };
    
    a(); // call the function
    

    Third question:

    You mean you want to redirect after the 3000ms fadeIn of the blockUI? You would do it in the callback that I pointed out under question 1 above. But of course this will make the entire page change, including the blockUI.

    window.location = "http://somedomain.com/some/path";
    

    Some clarification in your question is needed.

    It sounds like you have a function that sets a setTimeout() for some purpose, and that function is reused, so you need to reference the correct instance of setTimeout().

    If so, you can have your function return the setTimeout() instance, and use that reference to clear it if needed.

    function unblockUI(dur) {
        return setTimeout(function() {
            $.unblockUI();
        }, dur);
    }
    
    var someTimeout = unblockUI(1000);
    clear(someTimeout);
    
    var someOtherTimeout = unblockUI(1000);
    clear(someOtherTimeout);
    

    Is this close to what you’re asking?

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

Sidebar

Related Questions

Javascript functions can be declared on a objects prototype like this: <object name>.prototype.<variable name>=function(){
In JavaScript you can declare a variable and if it’s undefined , you can
How can I declare a global variable in JavaScript?
Suppose I declare a structured Javascript variable like this: var mydata = {'list':[ {'fname':'george','lname':'washington'}
How can i concatenate var names to declare new vars in javascript?: var foo
JavaScript libaries such as RequireJS and the like can be used to declare one
I can't understand why my javascript isn't working... Do i need to declare a
Javascript can't handle my longs, so I want RestEasy to wrap them with quotation
Is there a way to declare a global variable in jQuery in its own
The code is like this: <SCRIPT LANGUAGE=JavaScript> function showReview(){ //javascript stuff <?php $http=obj.href ='http://localhost/PROJECT1/thispage.php';

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.