Запускаю код (см ниже). выдает ширину и высоту =0, ввел переменную int1, чтоб определить заходит ли хоть в одно условие. Выдает 0, то есть не заходит.
Пользую IE8. как это лечится?
function alertSize() {
var myWidth = 0, myHeight = 0;
var int1=0;
if( typeof( window.innerWidth ) == 'number' ) {
//Non-IE
myWidth = window.innerWidth;
myHeight = window.innerHeight;
int1=1;
} else if( document.documentElement && ( document.documentElement.clientWidth ||
document.documentElement.clientHeight ) ) {
//IE 6+ in 'standards compliant mode'
myWidth = document.documentElement.clientWidth;
myHeight = document.documentElement.clientHeight;
int1=2;
} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
//IE 4 compatible
myWidth = document.body.clientWidth;
myHeight = document.body.clientHeight;
int1=3;
}
window.alert( 'Width = ' + myWidth );
window.alert( 'Height = ' + myHeight );
window.alert( int1 );
}