I am uploading images and once uploaded they appear in my sortable list.
I have
success response:
$('<li></li>').appendTo('#sortable').fadeIn('slow').html(response);
page code:
<ul id="sortable" class="files">
<li>image1</li> -> are there when the page loads
<li>image2</li> -> are there when the page loads
<li>image3</li> -> are there when the page loads
<li>image4</li> -> newly added image appears here but I would like it to
appear above image1
</ul>
But I would like to have it appear at the top. What I have adds it to the
very bottom of the list. How can I have it appear at the top of the list?
Thanks
Dave