|
From: Doug M. <do...@cr...> - 2000-11-24 19:30:13
|
don't know with Dynapi but here's simple Javascript:
var TheHeight;
var TheWidth;
=20
if (document.all) //if IE
{
TheHeight =3D document.body.clientHeight;
TheWidth =3D document.body.clientWidth;
}
else // is NS (we hope hehe)
{
TheHeight =3D window.innerHeight;
TheWidth =3D window.innerWidth;
}=20
----- Original Message -----=20
From: Abel Eduardo Cant=FA Salas=20
To: dyn...@li...=20
Sent: Friday, November 24, 2000 11:14 AM
Subject: [Dynapi-Help] ClientWidth & ClientHeight
Hi!
In looking for a property or method that returns the actual width & =
height of the browser window, is there any? maibe in DynDocument?
thanks a lot!
|