Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a list of images, and an empty table

I need to be able to drag an image over to an empty table cell and have that image be copied (not moved) into the new cell.

Sortable almost took care of this for me, but it wont replace the existing cell.

Here is the demo of what I am currently working on: http://simonwjackson.com/demos/bti/demo.html

share|improve this question

1 Answer

up vote 0 down vote accepted

If you are using jqueryui, you can set a property on your draggable item to make it clone instead of move.

$(".items").draggable({
    helper: "clone"
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.