I have a droppable with a drop event handler:
$(this).droppable({ drop:function(){ console.log(\'OMG You Dropped It!\'); } });
As pointed by StuperUser and based on ajmurmann's answer, with the recent versions of jQuery you should do:
StuperUser
ajmurmann
$("#droppable").droppable({ drop: function(event, ui) { do stuff } }); var drop_function = $("#droppable").droppable('option', 'drop'); drop_function();