As far as i understand, 800 * 600 is simply the total number of pixels on the screen. Meaning there are a total of 800 pixels for the width.
1 -> 800
|
600
To access the width use this variable
document.body.clientWidth;
document.body.clientHeight;
In Netscape use
innerWidth;
innerHeight;
For specifics on how to use these variables you should go to the Javascript forum.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.