I\'m using JQuery\'s draggable(); to make li elements draggable. The only problem is when the element is dragged outside its parent, it doesn\'t show up. That is, it doesn\'
I had also the same problem.
You can use this option
containment: $('#divmain')
helper: 'clone'
respectively for
- define limit area for dropping action
- for shows visible dragged object also outside div parent but inside #divmain
example
jquery code:
$('divparentdraggable').draggable({
...
containment: $('#divmain'),
helper: 'clone',
...
});
I hope this help someone.