Ширина и высота клиентской области окна

code: #javascript
<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>

автор: mik-a-el

Поделиться:

Похожие статьи: