Click here to Skip to main content
15,881,173 members
Articles / Web Development / HTML
Tip/Trick

Browsers View port Width & Height using Javascript

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
19 Apr 2011CPOL 32.1K   2   4
To get Browsers View port Width & Height using JavaScript
This code will help you to get the browser's view port width & height.

First, we need to write the below JavaScript inside the head section in HTML.
<script type="text/javascript" language="javascript">
        function fnGetWidthHeight() {
            var viewportwidth;
            var viewportheight;
            // The more standards compliant browsers (mozilla/netscape/opera/chrome/IE7) use window.innerWidth and window.innerHeight
            if (typeof window.innerWidth != 'undefined') {
                viewportwidth = window.innerWidth;
                viewportheight = window.innerHeight;
            }
            // IE6 in standards compliant mode (i.e. with a valid doctype as the first line in the document)
            else if (typeof document.documentElement != 'undefined' && typeof document.documentElement.clientWidth != 'undefined' && document.documentElement.clientWidth != 0) {
                viewportwidth = document.documentElement.clientWidth;
                viewportheight = document.documentElement.clientHeight;
            }
            // older versions of IE
            else {
                viewportwidth = document.getElementsByTagName('body')[0].clientWidth;
                viewportheight = document.getElementsByTagName('body')[0].clientHeight;
            }
            alert('Your viewport width & height is ' + viewportwidth + 'x' + viewportheight);
        }
    </script>

Then, we need to call this script from the body tag like below:
<body onload="fnGetWidthHeight()">

Now, run and see the size of view port area by increasing/decreasing the browser width/height.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generalnice script Pin
_Programmer26-Apr-11 3:53
_Programmer26-Apr-11 3:53 
GeneralRe: Thank You Pin
Toniyo Jackson26-Apr-11 19:58
Toniyo Jackson26-Apr-11 19:58 
GeneralCool. +5 for sharing the Tip. Pin
Kunal Chowdhury «IN»20-Apr-11 8:01
professionalKunal Chowdhury «IN»20-Apr-11 8:01 
GeneralRe: Thanks Kunal Pin
Toniyo Jackson20-Apr-11 20:26
Toniyo Jackson20-Apr-11 20:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.