18 lines
683 B
JavaScript
18 lines
683 B
JavaScript
// xClientWidth, Copyright 2001-2005 Michael Foster (Cross-Browser.com)
|
|
// Part of X, a Cross-Browser Javascript Library, Distributed under the terms of the GNU LGPL
|
|
|
|
function xClientWidth()
|
|
{
|
|
var w=0;
|
|
if(xOp6Dn) w=window.innerWidth;
|
|
else if(document.compatMode == 'CSS1Compat' && !window.opera && document.documentElement && document.documentElement.clientWidth)
|
|
w=document.documentElement.clientWidth;
|
|
else if(document.body && document.body.clientWidth)
|
|
w=document.body.clientWidth;
|
|
else if(xDef(window.innerWidth,window.innerHeight,document.height)) {
|
|
w=window.innerWidth;
|
|
if(document.height>window.innerHeight) w-=16;
|
|
}
|
|
return w;
|
|
}
|