I'm trying to detect the browser's current size (width and height). I know it's super easy in jquery with $(document).width and $document.height, but I don't want to add the size of the jquery lib to the project, so I'd rather just use built in javascript. What would be the short and efficient way to do the same thing with javascript?
|
|
||||
|
|
|||||||||
|
IE browsers are the only ones who don't use innerHeight and Width. But there is no 'standard'- just browser implementations. Test the html (document.documentElement) clientHeight before checking the body- if it is not 0, it is the height of the 'viewport' and the body.clientHeight is the height of the body- which can be larger or smaller than the window. Backwards mode returns 0 for the root element and the window (viewport) height from the body. Same with width. |
||||
|
|
|
Try this;
|
|||||||||
|
|
My case use for The
Since the content of the site always went beyond the visible height I couldnt use
I Tested the pop up in IE, FF, Chrome, and it looks good across the board. I know this doesnt follow the original question too much but I figure it might help if anyone else runs into the same issue when creating a custom modal pop up. |
|||
|
|
|
Here is a code sample
|
|||
|
|