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 having trouble getting some javascript and Jquery to delay the appropriate amount of time. I want to change some text, wait 5 seconds, then pop an alert.

Here's the code:

$('#result').html("Record has passed").delay(5000);
alert("Record has passed");

For some reason, the alert is running before jquery changes the #result and waits. Any solutions or anybody else see this problem?

I've tried

setTimeout($('#result').html("Record has passed"), 5000);

as well but still no luck.

share|improve this question
I should also add that I've tried moving the .delay(5000) as well: $('#result').delay(5000).html("Record has passed"); – Proxy404 Mar 30 '12 at 18:58

3 Answers

up vote 3 down vote accepted

jQuery's .delay method only works on animations and queued functions. Try using setTimeout instead.

$("#result").html("Record has passed");
setTimeout(function(){
    alert("Record has passed");
},5000);
share|improve this answer

if u still wanna use jquery delay, u can do like this:

$('#result').html("Record has passed").delay(5000).queue(function() {
  alert("Record has passed");
});
share|improve this answer
$('#result').html("Record has passed");
setTimeout(function(){
    alert("Record has passed");
},5000);​

Example Here.

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.