UI Draggable chage a clone
Hi.
I use a draggable plugin.
It looks like this one:
- $(".element").draggable({
helper: 'clone',
appendTo: 'body',
connectToSortable: '.list1, .list2',
revert: false
});
I try to change a class from dragg-element after this one was dragged. The problem is, that it is a clone from my element, and can not call for it. If i use $(this)-construct, then will the original element changed. Can someone help me please.