Body Droppable
Body Droppable
Having no luck with this. Searched the group and couldn't find
anything similar.
Is it possible to make the body element droppable? I've tried the code
below and with some console logging I can see the droppable being
bound to the body but the drop events do not seem to activate. Any
clues?
$('body')
.droppable(
{
accept: ".nl-tool",
drop: function(ev, ui) {
a = ui.draggable.data("toolDrop");
if (a != null) {
a( $(this) );
}
},
greedy: "true"
}
);
kevin