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?
|
|
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:
So, what is the proper way?
|
||
|
|
|
|
Try:
or alternatively set display none instead of hide(). |
||
|
|
|
Have you tried
|
||
|
|