Jump to content

Screen width and height


rondog

Recommended Posts

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

  • 6 months later...

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)

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.