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.

Thanks for reading this in advance.

I am trying to get a message to appear that gives my users a warning. I have successfully done this, but when I repeat the action that my function uses, the message is not appearing again.

Any help would be appreciated!

//take 5 seconds off the timer
                var count = parseInt($('.timerCount').html());
                $('.timerCount').html(count - 5);
                $('.timerWarnings').html("5 seconds has been deducted from the timer");
                $('.timerWarnings').fadeOut("slow");
share|improve this question
where is the part where you show the message again? – kennypu Dec 31 '12 at 2:36

2 Answers

up vote 1 down vote accepted

If you fade out an element, it stays hidden until you tell it not to be. Do .show().fadeOut() to ensure the element starts off visible.

share|improve this answer
Wonderful! I tried .fadeIn() before but no use.. Thank you :) – lauw0203 Dec 31 '12 at 2:39

You should first make the message to reappear in case it was hidden during previous iteration:

var count = parseInt($('.timerCount').html());
$('.timerCount').html(count - 5);
$('.timerWarnings')
 .show()
 .html("5 seconds has been deducted from the timer")
 .fadeOut("slow");
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.