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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T10:04:43+00:00 2026-05-20T10:04:43+00:00

As you may know, if you chain jQuery animations together using the complete parameter,

  • 0

As you may know, if you chain jQuery animations together using the “complete” parameter, each animation happens in succession only after the previous is complete.

I have a chain, like this:

$('#foobar').load(url, function(){
    $(this).fadeIn(time, function(){
        $(this).scrollTop(position, time, function() {
            $(this).css({'color':'#58e'})
        });
    });
});

This chain will execute something like this: first load content, then fade in, then scroll to the top, then finally change the css color.

What I want is this: first load the content, then fade in and scroll to the top at the same time, then finally change the color after fadeIn and scrollTop are both done.

Let’s say the scrollTop animation takes twice as long than the fadeIn animation. What simple piece of code would I add to my code so that the scrollTop callback in fadeIn DOESN’T wait for the fadeIn animation to complete. The css() animation will wait for the scrollTop animation to complete, like normal.

So the only change (whatever it might be) would affect the callback within fadeIn where scrollTop is called. I’m guessing it might have to do with manipulating the queue?

Thanks for the help!

EDIT: Here’s the solution as hinted by Andrew:

First, my original code which loads each custom function in order:

show_loader(0, function() {
    close_box($target_close, '/', '#' + $target_close.attr('id') + ' .post_wrap', function() {
        open_box($target_open, event.value, '.wide-col', function() {
            hide_loader(function() {
                scroll_to_content($target_open);
            });
            $target_close = $target_open;
        });
    });
});

Now I want close_box and open_box to execute asynchronously (at the same time), so I changed it to this:

show_loader(0, function() {
    close_box($target_close, '/', '#' + $target_close.attr('id') + ' .post_wrap');
    open_box($target_open, event.value, '.wide-col', function() {
        hide_loader(function() {
            scroll_to_content($target_open);
        });
        $target_close = $target_open;
    });
});

Now close_box and open_box animations happen at the “same time”.

  • 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-20T10:04:44+00:00Added an answer on May 20, 2026 at 10:04 am

    Move the code that animates scrollTop outside of the callback to the fadeIn function:

    $('#foobar').load(url, function() {
        $(this).fadeIn(time);            
        $(this).scrollTop(position, time, function() {
            $(this).css({'color':'#58e'});
        });
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

As you may know, in VS 2008 ctrl + tab brings up a nifty
As you may already know, the .NET Framework's protected internal access modifier works in
I know this may be a noob question, but it's bugging the heck out
One may not always know the Type of an object at compile-time, but may
Do you know what may cause memory leaks in JavaScript? I am interested in
This question may be too product specifc but I'd like to know if anyone
Does anyone know of any method in Rails by which an associated object may
This may be a no-brainer for the WPF cognoscenti, but I'd like to know
Those who know C++ may know what I mean by 'unity build': *.cpp files
As you may know, elements that contain floating elements won't stretch around their child

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.