Hi guys,
var icon = $("<div style='width:100px;height:100px;border-style:solid;'>");
icon.draggable({
containment: 'parent',
axis: 'y',
drag: function(e,ui) { }
});
icon.clone(true).appendTo($("body"));
After I have made a clone, icon dragging stopped working. Does anybody know, how to fix this?
Thanks