rondog Posted June 13, 2008 Share Posted June 13, 2008 I know how to get the resolution using screen.width and screen.height, but is it possible to get the width and height of the viewable area? Like take in consideration the scrollbar on the left, the navigation buttons on the top and the status bar on the bottom? Anyone know if thats possible? Link to comment https://forums.phpfreaks.com/topic/110112-screen-width-and-height/ Share on other sites More sharing options...
mga_ka_php Posted December 15, 2008 Share Posted December 15, 2008 i need to know this, anyone? Link to comment https://forums.phpfreaks.com/topic/110112-screen-width-and-height/#findComment-715591 Share on other sites More sharing options...
Philip Posted December 16, 2008 Share Posted December 16, 2008 Way to bring back an old thread, haha I just did this not too long ago, though. var winW = 0; var winH =0; if (parseInt(navigator.appVersion)>3) { if (navigator.appName=="Netscape") { winW = window.innerWidth; winH = window.innerHeight; } if (navigator.appName.indexOf("Microsoft")!=-1) { winW = document.body.offsetWidth; winH = document.body.offsetHeight; } } Above works fine for me in every browser I could test (the only one I didnt get to test with was IE6) Link to comment https://forums.phpfreaks.com/topic/110112-screen-width-and-height/#findComment-717188 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.