I want to know how to clone and append an element to the droppable area with the following code:
$(function() {
$(".draggable").draggable();
$(".item").droppable({
drop: function(event, ui) {
var $this = $(this);
$this.append(ui.draggable);
var width = $this.width();
var height = $this.height();
var cntrLeft = width / 2 - ui.draggable.width() / 2;
var cntrTop = height / 2 - ui.draggable.height() / 2;
ui.draggable.css({
left: cntrLeft + "px",
top: cntrTop + "px"
});
}
});
});
I feel happy if anyone explain me in detail.And please try to give me an example in Fiddle.It helps me a lot.Thank you.
Thank you for your quick response and yes it's fine and when I dragged the clone it's not working and I need to be interchanged the clones I dropped to the nearest location to it.And as you can see in the below mentioned sample it is not draggable when once it is dropped on the target.
http://jsfiddle.net/kiran/brCX5/31/embedded/result/
And the website link is http://www.vitsoe.com/en/re/shop/606/sketchtool where you can see what I mean but in this link it is just attaching but I need it to be dropped ie.. to be snapped to the nearest path and when I dropped with the same image it should attach below to the existing one and not to be overlapped.
And once again thank you for your response.
Thanks for the reply and I need it exactly the same but what happens is that when I interchange the positions as I said before it doesn't snap to the nearest co-ordinates as we first drag and drop on the target and one more thing is that it is adding the images though there is no gap at the end of the div section and if there is no place at the end it should check whether there is gap at the top or bottom and it should append to the the image otherwise it should revert can you please check that.