JQuery fadeIn() on DOM element creation?
Add it with a class that is hidden at the start.
<style>
.hidden {
display: none;
}
</style>
<div class="hidden">
Won't be seen.
</div>
$("<div>Hello</div>").hide().appendTo("somePlace").fadeIn("fast");