When using Jquery UI Sortable (which is great by the way) how do you get the item that is currently being sorted.
When you use $(this); it return the ac
$(this);
As far as I'm aware ui in your start: function(event, ui) is the current element being sorted.
ui
start: function(event, ui)
As pointed out in the comments ui.item is the current element.
ui.item