JavaScript and CSS Trouble

Hello :slight_smile:

I’m having trouble using Javascript and CSS. I’m trying to make a table the height of the available monitor size. So from the bottom of the bars at the top of the screen to the top of the bars at the bottom of the screen. In IE, this should be document.body.clientHeight, but this keeps returning 0. I’m testing this in IE 6.0. And in Mozilla, NS, and Firebird this should be screen.innerHeight.

After that, I was thinking about making the table quite large, and then to disable scrollbars. <**body scroll=“no”> works, but only in IE. Lostinbeta posted this CSS code that should work in all browsers:

body {
overflow: hidden;
}

Doesn’t work either ! The scrollbar is still there ! So I tried to do it with Javascript: document.body.style.overflow = “hidden”, and guess what: not working.

What am I doing wrong here ??