Reputation: 47945
var maskWidth = $(window).width();
alert(maskWidth);
I get 1263 from chrome and firefox (which is 1280 in fact, but with scroll it write a less value). IE print 1259.
How can I fix this problems with JQuery?
Upvotes: 2
Views: 2057
Reputation: 8463
$.clientCoords = function(){
if(jQuery.browser.msie){
return {
w:document.documentElement.offsetWidth,
h:document.documentElement.offsetHeight
}
}
else
return {w:window.innerWidth, h:window.innerHeight}
}
This function returns the height and weight of browser or current window
Upvotes: 1