Using fadein and append - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T17:18:57Zhttp://stackoverflow.com/feeds/question/327682http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/327682/using-fadein-and-append4Using fadein and appendCoughlin2008-11-29T16:38:53Z2009-08-24T12:04:04Z
<p>I am loading JSON data to my page and using appendTo() but I am trying to fade in my results, any ideas?</p>
<pre><code>$("#posts").fadeIn();
$(content).appendTo("#posts");
</code></pre>
<p>I saw that there is a difference between append and appendTo, on the documents.</p>
<p>I tried this as well:</p>
<pre><code>$("#posts").append(content).fadeIn();
</code></pre>
<p><strong><em>I got it, the above did the trick!</em></strong></p>
<p>But I get "undefined" as one of my JSON values.</p>
<p>Ryan</p>
http://stackoverflow.com/questions/327682/using-fadein-and-append/327694#3276946Answer by Kevin Gorski for Using fadein and appendKevin Gorski2008-11-29T16:49:28Z2008-11-29T16:49:28Z<p>If you hide the content before you append it and chain the fadeIn method to that, you should get the effect that you're looking for.</p>
<pre><code>// Create the DOM elements
$(content)
// Sets the style of the elements to "display:none"
.hide()
// Appends the hidden elements to the "posts" element
.appendTo('#posts')
// Fades the new content into view
.fadeIn();
</code></pre>
http://stackoverflow.com/questions/327682/using-fadein-and-append/327699#3276990Answer by Kent Fredric for Using fadein and appendKent Fredric2008-11-29T16:54:50Z2008-11-29T16:54:50Z<p>You have to be aware that the code doesn't execute linearly. The animated stuff can't be expected to halt code execution to do the animation and then return. </p>
<pre>
commmand();
animation();
command(); </pre>
<p>This is because the animation uses set timeout and other similar magic to do its job and settimeout is non-blocking.</p>
<p>This is why we have callback methods on animations to run when the animation is done ( to avoid changing something which doesn't exist yet ) </p>
<pre><code>
command();
animation( ... function(){
command();
});
</code></pre>
http://stackoverflow.com/questions/327682/using-fadein-and-append/327721#3277211Answer by Parand for Using fadein and appendParand2008-11-29T17:21:02Z2008-11-29T17:21:02Z<p>I don't know if I fully understand the issue you're having, but something like this should work:</p>
<p>HTML:</p>
<pre><code><div id="posts">
<span id="post1">Something here</span>
</div>
</code></pre>
<p>Javascript:</p>
<pre><code>var counter=0;
$.get("http://something/",
function(data){
$('#posts').append('<span style="display:none" id="post' + counter + ">" + data + "</span>";
$('#post' + counter).fadeIn();
counter += 1;
});
</code></pre>
<p>Basically you're wrapping each piece of the content (each "post") in a span, setting that span's display to none so it doesn't show up, and then fading it in.</p>