I am using jQuery UI to drag a clone of an object onto a droppable space. However, I need the droppable space to have the position: relative property because the dr
position: relative
Here is a solution but I'm not sure, if it is that, what you're looking for.
Replace this line:
$(this).append($(ui.helper).clone());
with this one:
$('').appendTo(this);
If you don't use the ui.helper it works.