I'm working on an overlay box that is fixed and centered on the screen. The page it's being used on is pretty lengthy and has a vertical scrollbar.
My goal is to prevent scrolling of the main page when the overlay is displayed. However, I can't completely disable scrolling because some overlays contain their own vertical scrollbars using overflow-y:scroll
. So while the content within the overlay should be scrollable, the main page itself should remain stationary.
Does anyone have any suggestions for how to achieve this using either jQuery or CSS?