Примеры JavaScript - Как узнать ширину и высоту клиентской (рабочей) области окна браузера?
ОГЛАВЛЕНИЕ
Страница 2 из 47
Как узнать ширину и высоту клиентской (рабочей) области окна браузера?
<script type="text/javascript">Пример работы кода: показать ширину и высоту рабочей области окна
//IE5+, Mozilla 1.0+, Opera 7+
function getClientWidth()
{
return document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientWidth:document.body.clientWidth;
}
function getClientHeight()
{
return document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientHeight:document.body.clientHeight;
}
</script>