"stop" draggable event never gets called in safari

"stop" draggable event never gets called in safari


I have the following piece of code which works fine on IE and Firefox:
$('#mylist').draggable({
distance: 100,
helper: 'clone',
opacity : 0.35,
revert: 'valid',
stop: function(event, ui) {
$(this).remove();
}
}
);
On safari, the dragging works, but the "stop" event never gets called.
Is there any workaround ?
Thanks in advance
gui