adding an image to a draggable / sortable area
I've got a script that allows me to drag and sort images, and I can drag them to a trash can if I want them deleted. When I drag and sort the images, the images order is updated in the database, and when I drop them in the trash can, the images are deleted from the database, and the image file itself is deleted from the images directory. I've also got an ajax uploader, which exists on a seperate page, but I'd like to be able to combine the two. Right now if I upload an image, it displays the image on the page so I know I uploaded it. I created all of this with very little jQuery and javascript experience, but it works well. What would it take to append or add an uploaded image to the sortable area? I've looked at draggable docs, droppable docs, and sortable docs, but don't know what I need to drop, sort, drag, or whatever.