views:

39

answers:

2

Is there a way for knowing what size was the visible portion of a page?

Are there any services that provide this? I mean, not just screen resolution, but available browser area. When a user has a lot of browser toolbars the area left for the webpage gets reduced. On the other hand, using Chrome may maximize the available space.

Thanks

+1  A: 

You'll have to use Javascript or JQuery to do so.

Here is a similar (answered) question

LeonG
+1  A: 

Using Javascript, you can get the Window.InnerHeight & .InnerWidth

Ed B
This is often called the "viewport".
DOK