Send the sortable element to the callback method
$('div.sortablePractice').sortable({
items: '.sortable',
revert: true,
scroll: true,
placeholder: 'sortableDrag',
start: startDrag,
stop: stopDrag
});
function startDrag(){
// do stuff
}
How do I send the ID or object of the item currently being dragged to
the callback method?