PHP and javascript snippets you can copy and paste.

Thursday, June 7, 2007

js_get_browserInnerWidth

/**
* Gets the inner width of the browser page.
*
* Credit: http://www.quirksmode.org/viewport/compatibility.html
*
function js_get_browserInnerWidth(){

if (self.innerHeight) // all except Explorer
{
y = self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientHeight)
// Explorer 6 Strict Mode
{
y = document.documentElement.clientHeight;
}
else if (document.body) // other Explorers
{
y = document.body.clientHeight;
}

return y;

}

No comments: