Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i would animate two elements after a delay called on the parent element. the HTML could be like this:

<div id='daddy'>
 <span id='text'>some text</span><a id='link'>a link</a>
</div>

i need something like this to call "function"

$("#daddy").fadeIn(300).delay(10000).function()
{
 $("#text").animate({[some stuff]});
 $("#link").animate(
  {
    [some stuff],
    [some other]
  });
}

i tried to have a look on .trigger("myPersonalEvent") and creating a customized event, but i think is not the right way to perform what i need... good idea could be allowing a callback after delay(), but it's not possible

i also appended a fake animation calling a fallback after that, but neither this solution excites me so much..

something better?

share|improve this question
An answer to a similar question is what I found useful: stackoverflow.com/questions/7915140/callback-to-delay – Pow-Ian Jan 3 at 19:31

1 Answer

I would use setTimeout inside of the callback function for fadeIn.:

$("#daddy").fadeIn(300, function () {   
    setTimeout(function()
    {
        $("#text").animate({[some stuff]});
        $("#link").animate(
        {
            [some stuff],
            [some other]
        });
    }, 10000);
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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