I'm trying to do the following method chain:

$(somehtml).insertAfter("#someelement").fadeIn('slow');

What I would like to happen is for the somehtml to be added but with the fadeIn effect.

However, this is not happening at all in my browser, it's just adding the contents as if the fadeIn wasn't even there.

Am I doing the chaining incorrectly?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Probably because the element is already visible at that point, and there's nothing to fade in. Try hiding it after it was created, and then fading it in:

$(somehtml).hide().insertAfter("#someelement").fadeIn('slow');
link|improve this answer
That makes it blink. What I would like for it to do, is to start out hidden, and then show it. – Joseph Oct 11 '10 at 21:14
1  
you were on the right track, this works: $(somehtml).hide().insertAfter("#someelement").fadeIn('slow'); – Joseph Oct 11 '10 at 21:15
yup, that did it! – Joseph Oct 11 '10 at 21:15
I don't see a difference: jsfiddle.net/S2ttH. But maybe it depends on what you're inserting and where. – Alec Oct 11 '10 at 21:22
feedback

Alec was on the right track, but you're going to get a flash of the element doing it the way he's demonstrating.

This is a much better way of doing the same thing:

$('<div />', {
  text: "Your Text",
  css: {
    display: "none"
  }
}).appendTo('body').fadeIn('slow');
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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