1

I need to append text to a cloned helper object when it's dragged over a droppable object.

Is there a way to trigger a callback on hover over a droppable object?

Ryan
  • 14,682
  • 32
  • 106
  • 179

1 Answers1

3

If I understand correctly, you want something to happen when the draggable is over the droppable?

If so, just use the over event:

$('.iamdroppable').droppable({

over: function() {  
//do something here
},

});
problemo
  • 629
  • 4
  • 13
  • Awarded answer. My secondary question was another problem in the draggable drag event. Removed for clarity. Thanks again. – Ryan May 10 '13 at 16:09