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 landed on this page with the exact same problem, and Brendan's answer got me close. Setting the appendTo
option didn't help, but I was able to resolve my issue by adding overflow: visible
to the parent of my draggable element. Turns out I was sloppily inheriting hidden from somewhere up the chain.
Side note, it looks like this works because jQuery UI moves the draggable element by dynamically setting positioning relative to the parent - this was new intel for me!