drop event not fired

drop event not fired


Hello,
I am having a problem where the drop event of the droppable is not
fired. My page is big and I tried to copy the parts to a new page to
reproduce the problem, however when running the stripped page, it
would work. I am not really sure what to check for anymore. All other
events are being fired. Here is how I defined my draggable/droppables.
// this is the draggable.
var id = "#someId"
$(id).draggable(
{
helper: 'clone'
});
// this is the droppable
$(".zone").droppable(
{
accept: function(draggable) { return true },
drop: function(ev, ui)
{
alert("T");
},
over: function(ev, ui)
{
//debugger;
},
out: function(ev, ui)
{
//debugger;
},
activate: function(ev, ui)
{
//debugger;
},
deactivate: function(ev, ui)
{
//debugger;
}
});
Any idea, how I can debug this issue?