vote up 1 vote down star

I'm having a problem creating a DOM element, appending it to another element, and having it fade into place.

Obviously, this doesnt seem to work:

$('<div/>').html('hello').appendTo('#parentDiv').fadeIn();

So, what is the proper way?

flag

2 Answers

vote up 4 vote down check

Try:

$("<div>hello</div>").hide().appendTo("#parentDiv").fadeIn();

or alternatively set display none instead of hide().

link|flag
dammit! John has made jQuery too easy. I should have realized that. – FluidFoundation Feb 11 at 15:02
vote up 0 vote down

Have you tried

$('<div/>').html('hello').appendTo('#parentDiv').hide().fadeIn();
link|flag

Your Answer

Get an OpenID
or

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