jQuery window height is not correct

I was working on a small jQuery snippet and got this weird issue. I was trying to get window height using jquery’s $(window).height() function.

Ideally $(window).height() returns the pixel less height of browser window. This is always the height of current browser window. If you resize browser this value should change.

Also you can get $(document).height(). $(document).height() returns an unit-less pixel value of the height of the document being rendered. If the actual document’s body height is less than the viewport height then it will return the viewport height instead. i.e. if you have less content in a page and window is sufficiently open to show this content then document height will be less than jquery window height.

Problem

However recently when I was playing with these values it seems both $(window).height() and $(document).height() gave me same value! Thus the $(window).height() was giving incorrect result.

Check out below source:

<html> <head> <script type='text/javascript' src='http://code.jquery.com/jquery-1.10.1.js'></script> <script type='text/javascript'> $(document).ready(function(){ $('#winheight').text($(window).height()); $('#docheight').text($(document).height()); }); </script> </head> <body> <div id="console"> $(window).height() = <span id="winheight"></span> <br/> $(document).height() = <span id="docheight"></span> </div> <p>Lorem ipsum dolor sit amet, ... </body> </html>
Code language: HTML, XML (xml)

Output:

What! The output shows value of $(window).height() and $(document).height() same 750. The window height is not equal. It should be 200px. Clearly we can see document is bigger, there is a scroll bar right there.

So why JQuery gives same value for window and document height? We’ll it turns out we missed a simple thing.

Solution

Our HTML document doesn’t have DOCTYPE declaration. So it’s not a valid HTML so to speak. JQuery cannot calculate window height / document height correctly if doctype is not specified on window.

The <!DOCTYPE> declaration is not an HTML tag; it is an instruction to the web browser about what version of HTML the page is written in.

So lets add DOCTYPE declaration to our HTML page and see the output.

<!DOCTYPE HTML> <html> //.. </html>
Code language: HTML, XML (xml)

Output:

Voila! It worked.. Never forget DOCTYPE declaration in your HTML. Always try to create HTML files using some kind of IDE. That will automatically take care of this.

View Comments

  • Hey Viral,

    I was writing a small piece of code and I was facing he same trouble.
    window.innerHTML was giving the right value but $(window).height() was giving the document's height.

    Your blog helped me figure it out :)

    BTW for virappatel.net blog readers. window.innerHTML: innerHTML is a property of the window object, natively available in all browsers. $(window).height() is ofcourse jquery pulling the same value.

  • This was driving me insane, as I would get the event for resize but the value for height was clearly wrong. Thank you!

  • Did not work for me. Already had a DOCTYPE. Then I noticed I had output BEFORE the DOCTYPE.
    So seems FF but not IE need to have DOCTYPE BEFORE all else.
    That was driving me nuts because some of my pages worked, others did not.

    Thanks.

  • Thank you very much, this was exactly my problem! I was searching around for hours and nothing seemed to work until I found your solution! Great post!

Recent Posts

  • Java

Java URL Encoder/Decoder Example

Java URL Encoder/Decoder Example - In this tutorial we will see how to URL encode/decode…

4 years ago
  • General

How to Show Multiple Examples in OpenAPI Spec

Show Multiple Examples in OpenAPI - OpenAPI (aka Swagger) Specifications has become a defecto standard…

4 years ago
  • General

How to Run Local WordPress using Docker

Local WordPress using Docker - Running a local WordPress development environment is crucial for testing…

4 years ago
  • Java

Create and Validate JWT Token in Java using JJWT

1. JWT Token Overview JSON Web Token (JWT) is an open standard defines a compact…

4 years ago
  • Spring Boot

Spring Boot GraphQL Subscription Realtime API

GraphQL Subscription provides a great way of building real-time API. In this tutorial we will…

4 years ago
  • Spring Boot

Spring Boot DynamoDB Integration Test using Testcontainers

1. Overview Spring Boot Webflux DynamoDB Integration tests - In this tutorial we will see…

4 years ago