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
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)

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.