In the jquery UI drop effect,how can I find the being draged one?
$('#test').droppable({
drop: function (e,ui) {
//$(this) means the drop-container
//How can I use the "ui" parameter find the being draged one?
}
}
});
Like ui.?
thank you
ui.draggableis the element being dragged.Documentation