I have a response which looks like this
<li class="dt">
<div>
<a><img src="imgpath1"><a>
</div>
</li>
<li class="dt">
<div>
<a><img src="imgpath2"><a>
</div>
</li>
<li class="dt">
<div>
<a><img src="imgpath3"><a>
</div>
</li>
What I am doing I my ajax success
sucess:function(data){
$(#MAIN_UL).html(data)
}
What I want is this Fade in each element - one after another
I even tried loading the entire response first and giving it a display none and then making it appear.But dint work.
how do I use this response,how do I make the li in my response appear one by one after delay?The problem occurs when i have to do it with my response..otherwise it works fine on data which comes on page load.