Núverandi stærð glugga í vafra.
Þú getur fengið stærð ytri glugga með window.outerWidth og window.outerHeight .
Þú getur fengið innri gluggastærð með window.innerWidth og window.innerHeight .
Með IE er hægt að fá það með document.body.clientWidth og document.body.clientHeight .
Þú getur fengið skjágluggastöðu með window.screenLeft og window.screenTop .
Til dæmis:
<script/
alert(window.outerWidth+' x '+window.outerHeight);
</script/