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 the scrollTo jQuery plugin and would like to know if it is somehow possible to temporarily disable scrolling on the window element through Javascript? The reason I'd like to disable scrolling is that when you scroll while scrollTo is animating, it gets really ugly ;)

Of course, I could do a $("body").css("overflow", "hidden"); and then put it back to auto when the animation stops, but it would be better if the scrollbar was still show but inactive.

share|improve this question
5  
If it is still showing, then the user is trained to think that it must be functioning. If the dose not move or dose not respond, then it will break the users mental model of how you page works and result in confusion. I would just find a better way of dealing with scrolling whilst animating, like for instance stopping the animation. – Marcus Whybrow Jan 22 '11 at 19:31

7 Answers

up vote 62 down vote accepted

The scroll event cannot be canceled. You can cancel 2 things however: mouse scroll and buttons associated with scrolling.

[Working demo]

// left: 37, up: 38, right: 39, down: 40,
// spacebar: 32, pageup: 33, pagedown: 34, end: 35, home: 36
var keys = [37, 38, 39, 40];

function preventDefault(e) {
  e = e || window.event;
  if (e.preventDefault)
      e.preventDefault();
  e.returnValue = false;  
}

function keydown(e) {
    for (var i = keys.length; i--;) {
        if (e.keyCode === keys[i]) {
            preventDefault(e);
            return;
        }
    }
}

function wheel(e) {
  preventDefault(e);
}

function disable_scroll() {
  if (window.addEventListener) {
      window.addEventListener('DOMMouseScroll', wheel, false);
  }
  window.onmousewheel = document.onmousewheel = wheel;
  document.onkeydown = keydown;
}

function enable_scroll() {
    if (window.removeEventListener) {
        window.removeEventListener('DOMMouseScroll', wheel, false);
    }
    window.onmousewheel = document.onmousewheel = document.onkeydown = null;  
}
share|improve this answer
How would I disable mouse scroll? – Olivier Lalonde Jan 22 '11 at 19:56
Call disable_scroll() from the code above, then enable_scroll() after the animation ended. – galambalazs Jan 22 '11 at 20:19
jsfiddle.net/3Ku26 – kubedan Jul 13 '12 at 8:24
2  
nice answer mate. – Barlas Jul 27 '12 at 19:30
2  
Tip for other devs stuck in this trap: Do make sure you remove any and all 'e.stopPropagation()' calls from other jQuery attempts to stop scrolling, because not only does it not work, it prevents the event from bubbling to THIS code that DOES work. Hopefully my wasted 30 mins will help save someone else time :) – Dirk van Bergen Jan 7 at 13:01
show 3 more comments

Do it simply by adding a class to the body:

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

Add the class then remove when you want to re-enable scrolling, tested in IE, FF, Safari and Chrome.

$('body').addClass('stop-scrolling')

For mobile devices, you'll need to handle the touchmove event:

$('body').bind('touchmove', function(e){e.preventDefault()})

And unbind to re-enable scrolling. Tested in iOS6 and Android 2.3.3

$('body').unbind('touchmove')
share|improve this answer
This worked well for me in Chrome 21.0.1180.89, IE9, FF15 & Safari 5.1.7 – toddv Sep 14 '12 at 21:20
3  
So simple. So elegant. – talentedmrjones Nov 10 '12 at 8:26
3  
Got it! You have to handle the touchmove event, as with $('body').bind('touchmove', function(e){e.preventDefault()}). Edited this answer to include this mobile solution. – MusikAnimal Nov 19 '12 at 21:46
1  
Cool, just have to make sure any inner scrolling can work in the modal for the touch device. Could do an overlay just underneath the modal and prevent the default touchmove on the overlay instead of body. – hallodom Nov 20 '12 at 9:43
2  
While this solution does work, it has the (potentially) undesirable effect of scrolling back to the top of the page. – Matt Feb 28 at 16:21
show 4 more comments

Here's a really basic way to do it:

window.onscroll = function () { window.scrollTo(0, 0); };

It's kind of jumpy in IE6.

share|improve this answer
2  
Not really a disabling, more like a snap to default when the scroll is attempted. – Marcus Whybrow Jan 22 '11 at 19:34
3  
@Marcus As good as it's going to get with an event that isn't cancelable. – sdleihssirhc Jan 22 '11 at 19:35
Your right there. – Marcus Whybrow Jan 22 '11 at 19:41
1  
It may interfere with jQuery scrollTo plugin. – galambalazs Jan 22 '11 at 20:07
Even though it doesn't disable it for real, it simulates it and that's good enough for me. – Chris B Jun 5 '12 at 18:40

I'm sorry to answer an old post but I was looking for a solution and came across this question.

There are many workarounds for this issue to still display the scrollbar, like giving the container a 100% height and an overfloy-y: scroll styling.

In my case I just created a div with a scrollbar which I display while adding overflow: hidden to the body:

function disableScroll() {
    document.getElementById('scrollbar').style.display= 'block';
    document.body.style.overflow= 'hidden';
    }

The element scrollbar must have this styles:

overflow-y: scroll; top: 0; right:0; display: none; height: 100%; position: fixed;

This shows a grey scrollbar, hope it helps future visitors.

share|improve this answer

I found a better, but buggy way, combining sdleihssirhc's idea:

window.onscroll = function() {
    window.scrollTo(window.scrollX, window.scrollY);
    //Or
    //window.scroll(window.scrollX, window.scrollY);
    //Or Fallback
    //window.scrollX=window.scrollX;
    //window.scrollY=window.scrollY;
};

I didn't test it, but I'll edit later and let you all know. I'm 85% sure it works on major browsers.

share|improve this answer

How about this? (If you're using jQuery)

var $window = $(window);
var $body = $(window.document.body);

window.onscroll = function() {
    var overlay = $body.children(".ui-widget-overlay").first();

    // Check if the overlay is visible and restore the previous scroll state
    if (overlay.is(":visible")) {
        var scrollPos = $body.data("scroll-pos") || { x: 0, y: 0 };
        window.scrollTo(scrollPos.x, scrollPos.y);
    }
    else {
        // Just store the scroll state
        $body.data("scroll-pos", { x: $window.scrollLeft(), y: $window.scrollTop() });
    }
};
share|improve this answer

I found this answer on another site:

Disable scroll:

$( ".popup").live({
    popupbeforeposition: function(event, ui) {
    $("body").on("touchmove", false);
}
});

After close popup release scroll:

$( ".popup" ).live({
    popupafterclose: function(event, ui) {
    $("body").unbind("touchmove");
}
});
share|improve this answer

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.