I have an overlay and to disable scrolling while the scroll bar is still visible (grayed out), I used:
CSS
html.noscroll {
position: fixed;
overflow-y: scroll;
width: 100%;
}
It works properly in IE8 and higher, but in IE7 the scroll bar is still enabled, and I can still scroll through the page.
Does anybody have an idea how I can solve this problem?