I have a draggable and a droppable that are inside a scrollable div...(never mind the eval() stuff...i need it for gwt jsni...
$(".draggable").draggable(eval('({"axis":"x"})'));
$(".droppable").droppable();
$(".droppable").bind( "drop", function(event, ui) {
// Need to align the left edge of the draggable with the left edge of the droppable here.
});
I've tried a bunch of different things with no luck. Any thoughts/suggestions?
Thanks in advance!
Victor