I am trying to allow a person to sort a list of items by dragging and
dropping them. I need to know the new index to where the item was
dropped into. I would imagine that value is contained in the ui
argument that is handled by the drop callback.
...
drop: function(ev, ui) {
// act on the drop event
}Is there a place or a method to find out what is contained within the ui arg? Thanks for the help.

