Following the example below the page, the callback function can take as many parameters as you need:
onDrop: function() { $('droppable_demo').highlight(); }
In this case, they did not use any of the callback parameters. For this, presumably, for access to all three, as indicated in the paragraph that you indicated, you can define:
onDrop: function(dragged, dropped, event) { }
source
share