Skip to content

Instantly share code, notes, and snippets.

@jackz3
Created June 18, 2012 04:16
Show Gist options
  • Save jackz3/2946803 to your computer and use it in GitHub Desktop.
Save jackz3/2946803 to your computer and use it in GitHub Desktop.
function getViewport(){
var w=window,d=document,e=d.documentElement,g=d.getElementsByTagName('body')[0],x=w.innerWidth||e.clientWidth||g.clientWidth,y=w.innerHeight||e.clientHeight||g.clientHeight;
return {'w':x,'h':y};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment