I have a 'box' that can be dragged and dropped onto a column of droppable divs. The draggable box snaps to the droppable div using the JqueryUI position function, but when I resize the draggable box to 3x the original height or more, I can no longer move the box a single 'droppable div' lower.
$( ".ru" ).droppable({
activeClass: "active",
hoverClass: "hover",
drop: function(event, ui) {
ui.draggable.position({
of: $(this),
my: 'top left',
at: 'top left'
});
}
});
I hope that makes sense, basically to recreate the problem, resize the draggable box to 3x the height and try to drag it 1 div down.
jsfiddle: link
Thanks for any help.