$("#home #oneTool").prepend($(".userInfo.module"));

var topVal = $(".userInfo.module").height();
$(".userInfo.module").hide();
$(".userInfo.module").slideDown(3000);

$("#home #oneTool div.divspot").each(function(){
   var newVal = topVal + parseInt($(this).css('top'));
   $(this).css('top',newVal);
});

The .userInfo.module is present above all div.divspots...

Since i'm using slideDown, the each function needs to be delayed, so that the div.divspots could also slidedown smoothly.. (will delay be helpful?)

Note: All div.divspots are absolutely positioned

link|improve this question

54% accept rate
Here is a possible contender if delay cannot be used directly. setTimeout or delay plus queue: stackoverflow.com/questions/6641222/… – mplungjan Jul 13 '11 at 6:45
What happens if you move the slidedown to after the each? It is hidden, so is it even showing the slide? – mplungjan Jul 13 '11 at 6:46
feedback

2 Answers

up vote 1 down vote accepted

Well first of all, slideDown takes as a parameter a function to call after it's done. http://api.jquery.com/slideDown/

Props to another answerer who realized what you were asking and a #fail to me for not reading your question properly.

That being said, for a method that does not have a callback after completion, here are a couple of options.

Two options:

  1. Use queue
  2. Use setTimeout

Use queue:

http://api.jquery.com/queue/

$(".userInfo.module").fooThatTakes(3000).queue(function() {
  $("#home #oneTool div.divspot").each(function(){
    var newVal = topVal + parseInt($(this).css('top'));
    $(this).css('top',newVal);
  });
});

Use setTimeout.

var delay = 3000;
$(".userInfo.module").fooThatTakes(delay);
t = setTimeout(afterFoo, delay);

function afterFoo() {
  $("#home #oneTool div.divspot").each(function(){
    var newVal = topVal + parseInt($(this).css('top'));
    $(this).css('top',newVal);
  });
}
link|improve this answer
what is fooThatTakes? – Pack Hack Jul 13 '11 at 7:01
feedback

If I've understood your question correctly, then you want to run your each function after the slideDown is complete. If that's right, then you can use a callback to the slideDown function:

$(".userInfo.module").slideDown(3000, function() {
    //Your each function
});

The callback will run upon completion of the animation.

link|improve this answer
oh no.. i want to run the slide down and the each function parallely – Pack Hack Jul 13 '11 at 6:53
feedback

Your Answer

 
or
required, but never shown

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