Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to provide my visitors the ability to see images in high quality, is there any way I can detect the window size?

Or better yet, the viewport size of the browser with JavaScript? See green area here:

share|improve this question

7 Answers

up vote 20 down vote accepted

See: responsejs.com/labs/dimensions/

// pure JavaScript
var viewportWidth  = document.documentElement.clientWidth
  , viewportHeight = document.documentElement.clientHeight


// jQuery
var viewportWidth  = $(window).width()
  , viewportHeight = $(window).height()

clientWidth/Height works everywhere.

2013 update: The technique in verge uses feature detection to determine the best technique. This corrected approach seems to be the safest and most accurate. Re: #17

share|improve this answer
Just wondering if the quirksmode link says clientWidth / clientHeight is a no-go in IE9 on mobile. Can you please clarify on that? Excellent answer by the way! Thanks! – its_me Feb 22 at 13:08
@01100001 I am not sure about IE9. You can test by comparing the values on responsejs.com/labs/dimensions - It is correct if it matches the @media breakpoint. See updated answer above too. – ryanve Feb 22 at 22:31
2  
@01100001 Replace $ with verge. If you want to integrate into jQuery then do jQuery.extend(verge). See: verge.airve.com/#static – ryanve Feb 24 at 17:54
1  
Oh, I missed that note in the doc. Didn't know using verge would be this easy! Thanks a lot! – its_me Feb 25 at 14:03
1  
Just wanted to mention that in IE8 (and perhaps others) you must have the <!DOCTYPE html> at the top of the page in order for the code to work. – Tzury Bar Yochay May 9 at 7:44
show 2 more comments

jQuery dimension functions

$(window).width() and $(window).height()

share|improve this answer
Thank you all for the quick answers. – Alix Axel Aug 8 '09 at 7:17
49  
a non jQuery solution would be good – allyourcode Dec 12 '09 at 23:18
20  
@allyourcode, impossible, jQuery is the answer to all. – Xeoncross Jun 14 '11 at 15:40

You can use the window.innerWidth and window.innerHeight properties.

innerHeight vs outerHeight

share|improve this answer
8  
Doesn't work in IE - quirksmode.org/dom/w3c_cssom.html#windowview – Chetan Sastry Aug 8 '09 at 7:11
6  
Even though this doesn't work in IE +1 for diagram :D. For a question like this, it should be a crime not to have more of these. – allyourcode Dec 12 '09 at 23:14
5  
@CMS document.documentElement.clientWidth is more accurate and more widely supported than window.innerWidth – ryanve Jan 16 '12 at 5:24
@ryanve If by "more accurate" you mean "doesn't even remotely do the same thing" then yes :P – boxed May 7 at 11:39
@boxed See the 2013 update to stackoverflow.com/a/8876069/770127 – ryanve May 7 at 15:13

If you aren't using jQuery, it gets ugly. Here's a snippet that should work on all new browsers. The behavior is different in Quirks mode and standards mode in IE. This takes care of it.

var elem = (document.compatMode === "CSS1Compat") ? 
    document.documentElement :
    document.body;

var height = elem.clientHeight;
var width = elem.clientWidth;
share|improve this answer
4  
Doesn't this give you the height of the page, not the viewport? That's what this page seems to indicate: developer.mozilla.org/en/DOM/element.clientHeight – allyourcode Dec 12 '09 at 23:13

There is a difference between window.innerHeight and document.documentElement.clientHeight. The first includes the height of the horizontal scrollbar.

share|improve this answer
You mean width? – Alix Axel Feb 16 at 22:51

This code is from http://andylangton.co.uk/articles/javascript/get-viewport-size-javascript/

function viewport() {
    var e = window, a = 'inner';
    if (!('innerWidth' in window )) {
        a = 'client';
        e = document.documentElement || document.body;
    }
    return { width : e[ a+'Width' ] , height : e[ a+'Height' ] };
}

NB : to read the width, use console.log('viewport width'+viewport().width);

share|improve this answer

A solution that would conform to W3C standards would be to create a transparent div (for example dynamically with JavaScript), set its width and height to 100vw/100vh (Viewport units) and then get its offsetWidth and offsetHeight. After that, the element can be removed again. This will not work in older browsers because the viewport units are relatively new, but if you don't care about them but about (soon-to-be) standards instead, you could definitely go this way:

var objNode = document.createElement("div");
objNode.style.width  = "100vw";
objNode.style.height = "100vh";
document.body.appendChild(objNode);
var intViewportWidth  = objNode.offsetWidth;
var intViewportHeight = objNode.offsetHeight;
document.body.removeChild(objNode);

Of course, you could also set objNode.style.position = "fixed" and then use 100% as width/height - this should have the same effect and improve compatibility to some extent. Also, setting position to fixed might be a good idea in general, because otherwise the div will be invisible but consume some space, which will lead to scrollbars appearing etc.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.