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 have a overlay box that is fixed and centered on the screen. The page itself is rather long and has a vertical scrollbar.

I'd like to disable scrolling of the page itself once the overlay is shown. However I can't disable scroll completely because some overlays do have overflow-y:scroll for themselves. So the content in the overlay should be scrolled but the page itself should be stuck.

Any idea how to solve that with jquery or css?

share|improve this question
I think you meant 'overflow-y: scroll' and not 'overflox-y' ;-) – reporter Jul 25 '11 at 12:12
jep! :) fixed it. thank you. – matt Jul 25 '11 at 12:13

3 Answers

up vote 2 down vote accepted

The quickest and dirtiest way I can think of is to attach an event listener to the window for scroll events, and preventDefault() if your overlay is visible.

like so (using jquery).

   window.addEventListener('scroll', function(e){
        var el = $('.overlay.active');

        if( el.length > 0 ){
            e.preventDefault();
        }   
   });

Hope this is what your looking for.

share|improve this answer

You can set the body to overflow: hidden. This will prevent scrolling. Child's overflow declarations stay unaffected. I have done a little fiddle.

share|improve this answer
the problem is that the page will jump once the scrollbars are hidden – matt Jul 25 '11 at 12:30
i thought about any solution that just prevents the onScroll handler from scrolling – matt Jul 25 '11 at 12:30
This worked perfectly from me in keeping the overlay scrollable but the body won't scroll any more.. great! – Tigraine Sep 9 '12 at 12:42

You can position your overlay as a {position: fixed;}. That will keep your overlay in your screen even if your page scrolls.

share|improve this answer
yeah, that is already the case! :) I wonder how i can prevent the rest of the page from scroling. The overlay is kept in place, but i can still use my scrollwheel and scroll the content behind the fixed overlay. – matt Jul 25 '11 at 12:15
well, in that case you can use nasty hacks. Did you try changing body's overflow to hidden? – jrharshath Jul 25 '11 at 12:17
the problem is that then the page jumps a few pixels since the scrollbar disappears. any other ideas? maybe with jquery? – matt Jul 25 '11 at 12:22

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.