Latest 100 public snipts »
catcubed's
snipts » window
showing 1-1 of 1 snipts for window
-
∞ Get Page Size
function getPageSize(){ var de = document.documentElement; var w = window.innerWidth || self.innerWidth || (de&&de.clientWidth) || document.body.clientWidth; var h = window.innerHeight || self.innerHeight || (de&&de.clientHeight) || document.body.clientHeight; var pg = [w,h]; return pg; }


