Roland M�sl wrote: > "Erik Arvidsson" <[EMAIL PROTECTED]> wrote in message > 9u6g9s$[EMAIL PROTECTED]">news:9u6g9s$[EMAIL PROTECTED]... > >>For Mozilla you are best of using window.innerWidth and >> > window.innerHeight. > > This works only at Mozilla and gives at MSIE 6 an "undefined"
Then do something like:
if (window.innerHeight) {
windowHeight=window.innerHeight;
} else if (document.body.clientHeight) {
windowHeight=document.body.clientHeight;
} else {
/* panic... */
}
ian.
