We want to stop drag of an element if its out of the parent offsets so that it doesn't overscroll, but it should be able to scroll in any other direction.
I tried:
function init_drag(){
$("#map").draggable({
drag: function(event, ui){
obj = $(this);
// left
if(obj.offset().left-obj.parent().offset().left > 0)
//obj.draggable().trigger('mouseup').animate({ left: '0px' }).simulate("mousedown");
obj.draggable().animate({ left: '0px' });
},
stop: function(event, ui){
init_drag();
}
});
}
init_drag();
I think the problem is my try with the animation effect, but not only. Perhaps thats a very easy task for js gurus.
