I am loading JSON data to my page and using appendTo() but I am trying to fade in my results, any ideas?
appendTo()
$(\"#posts\").fadeIn(); $(content).appe
First is convert received data to jQuery Object. Second, hide it immediately. Third, append it to a target node. And, after this all, we can clearly use necessary animation, just like fadeIn :)
jNode = $("firstsecond"); jNode.hide(); $('#content').append(jNode); jNode.fadeIn();