I want position of a drag clone image after drop it on droppable area.
$("#dhtmlgoodies_xpPane .draggable").draggable({ start: function(event, ui) { var Startpos = $(this).position(); $("div#start").text("START: \nLeft: "+ Startpos.left + "\nTop: " + Startpos.top); },
stop: function(event, ui) {
var Stoppos = $(this).position();
$("div#stop").text("STOP: \nLeft: "+ Stoppos.left + "\nTop: " + Stoppos.top);
}
}); but it get only image from menu not the clone image.