Using fadein and append - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T17:18:57Z http://stackoverflow.com/feeds/question/327682 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/327682/using-fadein-and-append 4 Using fadein and append Coughlin 2008-11-29T16:38:53Z 2009-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#327694 6 Answer by Kevin Gorski for Using fadein and append Kevin Gorski 2008-11-29T16:49:28Z 2008-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#327699 0 Answer by Kent Fredric for Using fadein and append Kent Fredric 2008-11-29T16:54:50Z 2008-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#327721 1 Answer by Parand for Using fadein and append Parand 2008-11-29T17:21:02Z 2008-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>&lt;div id="posts"&gt; &lt;span id="post1"&gt;Something here&lt;/span&gt; &lt;/div&gt; </code></pre> <p>Javascript:</p> <pre><code>var counter=0; $.get("http://something/", function(data){ $('#posts').append('&lt;span style="display:none" id="post' + counter + "&gt;" + data + "&lt;/span&gt;"; $('#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>