Показать сообщение отдельно
  #8 (permalink)  
Старый 20.01.2010, 21:37
Аватар для HelpeR
Профессор
Отправить личное сообщение для HelpeR Посмотреть профиль Найти все сообщения от HelpeR
 
Регистрация: 21.10.2008
Сообщений: 241

if(!this.ie6 && window.innerWidth && window.innerHeight && window.screen && window.screen.width && window.screen.height) {
            winWidth  = parseInt(window.innerWidth);
	        winHeight = parseInt(window.innerHeight);
	  
	        maxWidth  = parseInt(window.screen.width);
	        maxHeight = parseInt(window.screen.height);
        }
        if(this.ie) {
            if(document.documentElement.clientWidth && document.documentElement.clientHeight && document.body && document.body.offsetWidth && document.body.offsetWidth) {
                winWidth    = parseInt(document.documentElement.clientWidth);
	            winHeight   = parseInt(document.documentElement.clientHeight); 
		
		        maxWidth    = parseInt(document.body.offsetWidth);
	            maxHeight   = parseInt(document.body.offsetHeight);
            }
        }
получаете полный размер документа (с учетом скроллинга)
Ответить с цитированием