vote up 0 vote down star

I need to lock the browser scrollbars when I show a div that represent a modal window in Internet Explorer 7 only. Googling I found that I can use document.body.style.overflow='hidden' but this doesn't work for IE7. I also tried with document.body.scroll="no" which works but only after I mouse over the scrollbar :-S

Does anybody knows a better aproach?

Thansks

flag

75% accept rate

3 Answers

vote up 2 vote down check

To answer your various questions (including that in your other comment), I think you're using the wrong positioning method.

Try position:fixed. It's basically the same as position:absolute apart from it's relative to the absolute viewport. Ie: if the user scrolls, the item stays in the same place on the screen.

So with this in mind, you can lay out a position:fixed overlay. Within that you can have your position:absolute (or fixed again, if you prefer -- it shouldn't make a difference) modal box.

link|flag
Thanks a lot, that just solved the problem. I thought I know almost all about CSS until now :-P Thanks again. – Flupkear Jan 7 at 21:27
vote up 2 vote down

Set your modal overlay div to fill the body, so even if they scroll there's nothing they can do because everything is hidden underneath it.

link|flag
how do you get the size of the viewport in IE7? I can't get the real size of the body with any of these: window.innerHeight, document.body.scrollHeight, document.body.offsetHeight, document.documentElement.clientHeight, document.body.clientHeight The page has a size of around 2000 pixels – Flupkear Jan 7 at 20:59
can't you just use 100% – d03boy Jan 7 at 21:08
If you use jquery you can just do $("body").width() and $("body").height() to get the body width and height in a cross browser compatible way. – Kevin Tighe Jan 7 at 21:12
The application I'm working on uses Prototype, I couldn't find a way with Prototype to get the real height. Height 100% doesn't work either. I fixed it with position:fixed – Flupkear Jan 7 at 21:25
vote up 0 vote down

you can also hide scrollbars by using overflow:hidden so the user wont see the scollbars so it wont get tempted to scoll around:)

link|flag

Your Answer

Get an OpenID
or

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