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.

How do I create a DOM element in JQuery and fade it in to show up, instead of having it show up immediately?

I try this:

var myDiv = "<div>Hello!</div>"
$("somePlace").after(myDiv).fadeIn('fast');

but this doesn't work, since the .after(myDiv) makes it popup immediately. Any solutions? Thanks!

share|improve this question

2 Answers

up vote 10 down vote accepted
$("<div>Hello</div>").hide().appendTo("somePlace").fadeIn("fast");
share|improve this answer
1  
+1 Sigh. Oh yeah, good point. – altCognito May 11 '09 at 10:41
Thanks cletus! Thanks altCognito for the alternative. – ash May 11 '09 at 10:42

Add it with a class which is hidden at the start.

<style>
.hidden {
  display:none;
}
</style>

<div class="hidden">
 Won't be seen.
</div>
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.