Please for help on this jsfiddle
The problem is when you drop element it does not position well. I know the problem is because of left: 12px; in css but cant figure out how to solve.
$('.b').droppable({
drop:function(event, ui) {
ui.draggable.detach().appendTo($(this));
}
});
$('.b').selectable();
$('.c').draggable({
helper:"clone",
revert: 'invalid',
opacity: 0.5,
grid: [30,36],
});
Just use
ui.draggable.detach().appendTo($(this).prev())
insteadFIDDLE