// getBrowserWidth() by Cameron Adams
// <a href="http://www.themaninblue.com/experiment/ResolutionLayout/" >http://www.themaninblue.com/experiment/ResolutionLayout/</a>
function getBrowserWidth ( ) {
if ( window.innerWidth ) { return window.innerWidth; }
else if ( document.documentElement && document.documentElement.clientWidth != 0 ) { return document.documentElement.clientWidth; }
else if ( document.body ) { return document.body.clientWidth; }
return 0;
}
getBrowserWidth() by Cameron Adams
Leave a Reply
You must be logged in to post a comment.