Using jQuery and Jquery UI, I have a draggable and droppable area, the draggable item has the following helper
$(".draggable").draggable({
revert: 'invalid',
grid: [ 20,20 ],
cursorAt: { top: -12, left: -20 },
helper: function(event) {
return $('<div class="helper"></div>');
}
});
How do I get the helper to be added
to the droppable area?