My goal is to be able to take a draggable item and drop it on a collapsed div. When the item is dropped it will be appended to a div that is within the collapsed div.
Put simply, dropping on 'outter_collapsed' will place the item in 'inner'
<div id = "outter_collapsed">
<div id = "inner">
<!-- DROPPED ITEM PLACED HERE -->
</div>
</div>
Any ideas on how you would approach this or possible words of wisdom are welcome.
Thank you