Good morning,
i hope someone can help me.
My Problem: The sortable event out: fires when i drag something in the list or when i sort the list. But i only want to start the function when i drag a item out.
My code
$(document).ready(function ust()
{
$('#div1').sortable({
out: function(event, ui) { $('#nfo').append('OUT<br />'); }
});
});
Working example http://jsfiddle.net/FrbW8/22/
kind regards Peter