vote up 2 vote down star

how can I use .append with effects like show('slow')

having effects on append doesnt seems to work at all. and it give results as normal show()

no transitions, no animations.

How Can I append one div to another. and have a slideDown or Show('slow') effect on it?

flag

3 Answers

vote up 2 vote down check

Having effects on append won't work because the content the browser displays is updated as soon as the div is appended. So, to combine Mark B's and Steerpike's answers:

Style the div you're appending as hidden before you actually append it. You can do it with inline or external CSS script, or just create the div as

<div id="new_div" style="display: hidden;"> ... </div>

Then you can chain effects to your append:

$('#original_div').append('#new_div').show('slow');
link|flag
vote up 3 vote down

Set the appended div to be hidden initially through css display:hidden.

link|flag
vote up 0 vote down

Something like:

$('#test').append('<div id="newdiv">Hello</div>').hide().show('slow');

should do it?

Edit: sorry, mistake in code and took Matt's suggestion on board too.

link|flag
1  
Not sure if that would do what he wants, but if so, you'd chain the functions: $('#divid').append('#newdiv').hide().show('slow'). – Bears will eat you Oct 5 at 14:07
It does work; the #newdiv bit is wrong though and you're right, you can chain them. I've edited my answer now. – Mark B Oct 5 at 14:15

Your Answer

Get an OpenID
or

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