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'm simply trying to delay an action before it starts but I seem to be having some trouble.

This is my code:

$(document).ready(function(){
    $(".action1").bind("load", function () { $(this).fadeOut('slow'); });
    $(".action2").bind("load", function () { $(this).fadeIn('slow'); });
});

And I basically want to delay the first action from taking place just for a few seconds (onLoad).

share|improve this question
Do you know about delay() ? – Šime Vidas Jan 27 '11 at 21:54
I'm aware of it, I'm just not 100% were to place it in my code. – Alexwhin Jan 27 '11 at 21:55

5 Answers

up vote 3 down vote accepted

Try this(added delay for the first element before fadeOut call):

$(document).ready(function(){
    $(".action1").bind("load", function () { $(this).delay(2000).fadeOut('slow'); }); //Delay for 2 seconds
    $(".action2").bind("load", function () { $(this).fadeIn('slow'); });
});

Reference: http://api.jquery.com/delay/

share|improve this answer
Worked great, Thank you so much :) – Alexwhin Jan 27 '11 at 22:00

try using the delay() function

$(document).ready(function(){
    $(".action1").bind("load", function () { $(this).delay(2000).fadeOut('slow'); });
    $(".action2").bind("load", function () { $(this).fadeIn('slow'); });
});
share|improve this answer

Wrap your function calls in setTimeout.

setTimeout( func, delay );

setTimeout(function() {
    /* your code */
}, 1000);
share|improve this answer

Try

$(this).delay(2000).fadeOut('slow');
share|improve this answer

setTimeout ( expression, timeout );

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.