PHP and javascript snippets you can copy and paste.

Thursday, June 7, 2007

js_get_pageWidth()

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

var x;
var test1 = document.body.scrollHeight;
var test2 = document.body.offsetHeight
if (test1 > test2) // all but Explorer Mac
{
x = document.body.scrollWidth;
}
else // Explorer Mac;
//would also work in Explorer 6 Strict, Mozilla and Safari
{
x = document.body.offsetWidth;
}

return x;

}

No comments: