Hi,
I would greatly appreciate if someone could help me with this.
Is there any way of getting the full width and height of an EI browser window using JavaScript.
IE doesn't return the full Browser width, it only returns the inner display area width and height.
What I need it the Full height and width including the toolbars and scrollbars.
Thanks
For FireFox I use
myWidth = window.innerWidth;
myHeight = window.innerHeight;
For IE
myWidth = document.documentElement.clientWidth;
myHeight = document.documentElement.clientHeight;
I would greatly appreciate if someone could help me with this.
Is there any way of getting the full width and height of an EI browser window using JavaScript.
IE doesn't return the full Browser width, it only returns the inner display area width and height.
What I need it the Full height and width including the toolbars and scrollbars.
Thanks
For FireFox I use
myWidth = window.innerWidth;
myHeight = window.innerHeight;
For IE
myWidth = document.documentElement.clientWidth;
myHeight = document.documentElement.clientHeight;