Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.