draggable lists - how do I display LI text in receiving DIV?

draggable lists - how do I display LI text in receiving DIV?


I can drag LI items onto a Div. Now I would like the Div to display
the LI text, or, variable values. How do I access the object
properties?
Thanks, in advance,
$("li").draggable({helper: 'clone'});
$(".drop").droppable({
    accept: "li",
    drop: function(ev, ui) {
...Insert code here...
    }
});