I have a drag and drop system and it's all working fine. I have multiple divs that are droppable and multiple divs that are draggable. Then i implemented a clone system to the droppable area, so my droppable divs can all be cloned, and that's working fine too.
The problem it's when i try to drag elements to the cloned draggable areas. The draggable divs don't detect the cloned droppable areas as a droppable area, i only can drag the elements to the original dropp areas.
Do i need to update something to let the draggable divs to know that there's new elements that are droppable?
---EDIT---
To everyone with the same problem, you need to destroy the droppable before the clone. So in your clone function, just put this
$(".drop").droppable( "destroy" );
and then clone, and after that you call the droppable function again.