Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using jquery resizable plugin with custom handle. I want to scroll site down when handle reaches the bottom of the window- ideally the way draggable plugin works, when dragging divs outside visible area of the document. I'm resizing only along y axis, using "s" handle.

UPDATE: jsfiddle avaible here: http://jsfiddle.net/yazgY/10/

So far resizing works fine:

$(function() {
    $("#mask_container").resizable({handles: {'s': '#button'}});
});

Basic structure of html looks like this:

<div id="mask_container" class="ui-widget-content">
    <div id="mask"></div>
    <div id="button" class="ui-resizable-handle ui-resizable-s"></div>
</div>

I was trying to implement parts of the code from draggable that is responsible for scrolling, but with no luck so far :(

share|improve this question

1 Answer

up vote 0 down vote accepted

You can use the scrollTop method to achieve that effect after the resize event has stopped. Try this:

JS

$("#mask_container").resizable({
    handles: {
        's': '#button'
    },
    stop: function(event, ui) {
        var viewportHeight = $(window).height();
        var masContainerHeight = ui.size.height;

        if (masContainerHeight > viewportHeight) {
            $("html, body").animate({
               scrollTop: $(document).height() - $(window).height()
            });
        }
    }
});

Demo: http://jsfiddle.net/yazgY/11/

share|improve this answer
Works great! Thanks a lot. – katonczyk Jun 20 '12 at 6:47

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.