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

How do I use jQuery to determine the size of the browser viewport, and to redetect this if the page is resized? I need to make an IFRAME size into this space (coming in a little on each margin).

For those who don't know, the browser viewport is not the size of the document/page. It is the visible size of your window before the scroll.

share|improve this question
Any idea how to get the area that is visible on devices screen, not just what it can scroll to? I see $(window).height() returning the full width of the document, not the portion that is zoomed to. I want to know how much is visible after zoom is applied. – Frank Schwieterman Nov 20 '11 at 2:38
appelsiini.net/projects/viewport This should do it! :) – Mackelito Mar 9 '12 at 14:54

2 Answers

up vote 164 down vote accepted

To get the width and height of the viewport:

var viewportWidth = $(window).width();
var viewportHeight = $(window).height();

resize event of the page:

$(window).resize(function() {

});
share|improve this answer
6  
I tested this on Windows IE6, IE8, FF3.6.3, Google Chrome 5.0.375.70, Opera 10.53, and Safari 5.0 (7533.16). This works consistently on all of these. I also tested FF3.6.3 on Ubuntu and it works there too. I think I'm using jQuery 1.3 with WordPress 2.9.2, which is where I needed this to work. – Volomike Jun 16 '10 at 3:57
15  
Any idea how to get the area that is visible on devices screen, not just what it can scroll to? I see $(window).height() returning the full width of the document, not the portion that is zoomed to. I want to know how much is visible after zoom is applied. – Frank Schwieterman Nov 20 '11 at 2:38
1  
Actually, innerWidth / innerHeight is more correct to use (covering zooming). – Ken - Abdias Software Jan 16 at 21:03
@FrankSchwieterman Maybe your browser is not behaving the way that you want it to: maybe you are running into this problem: stackoverflow.com/q/12103208/923560 . Make sure your HTML file includes a proper DOCTYPE declaration , e.g. <!DOCTYPE html>. – Abdull Feb 15 at 14:59

This is not a direct answer to the question, but can be handy for those wanting to manipulate selectors according to their position & visibility relative to the viewport:

http://www.appelsiini.net/projects/viewport (plugin)

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.