SBonfiglio
IS-IT--Management
Folks,
I can't understand why this function refuses to do it's kob.
It is supposed to center a DIV in the window.
function CenterDiv {
var myWidth = 0, myHeight = 0;
if( typeof( window.innerWidth ) == 'number' ) {
//Non-IE
myWidth = window.innerWidth;
myHeight = window.innerHeight;
} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
//IE 6+ in 'standards compliant mode'
myWidth = document.documentElement.clientWidth;
myHeight = document.documentElement.clientHeight;
} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
//IE 4 compatible
myWidth = document.body.clientWidth;
myHeight = document.body.clientHeight;
}
myObj=document.getElementById.style;
w=myObj.width;
h=myObj.height;
xc=Math.round((myWidth-w)/2);
yc=Math.round((myHeight-h)/2);
myObj.Left = xc + "px";
myObj.Top = yc + "px";
}
Ideas ?
Suggestions ?
I can't understand why this function refuses to do it's kob.
It is supposed to center a DIV in the window.
function CenterDiv {
var myWidth = 0, myHeight = 0;
if( typeof( window.innerWidth ) == 'number' ) {
//Non-IE
myWidth = window.innerWidth;
myHeight = window.innerHeight;
} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
//IE 6+ in 'standards compliant mode'
myWidth = document.documentElement.clientWidth;
myHeight = document.documentElement.clientHeight;
} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
//IE 4 compatible
myWidth = document.body.clientWidth;
myHeight = document.body.clientHeight;
}
myObj=document.getElementById.style;
w=myObj.width;
h=myObj.height;
xc=Math.round((myWidth-w)/2);
yc=Math.round((myHeight-h)/2);
myObj.Left = xc + "px";
myObj.Top = yc + "px";
}
Ideas ?
Suggestions ?