I have a droppable with a drop event handler:
$(this).droppable({ drop:function(){ console.log(\'OMG You Dropped It!\'); } });
You should move the code in your drop handler to a separate function. You can then call the function both in the handler and elsewhere.
drop