Skip to content

Instantly share code, notes, and snippets.

@Lukas238
Created August 13, 2015 22:15
Show Gist options
  • Save Lukas238/e4a6827c6f3b1c94310e to your computer and use it in GitHub Desktop.
Save Lukas238/e4a6827c6f3b1c94310e to your computer and use it in GitHub Desktop.
Get real width of window. The same as CSS media query.
function viewport() {
var e = window, a = 'inner';
if (!('innerWidth' in window )) {
a = 'client';
e = document.documentElement || document.body;
}
//return { width : e[ a+'Width' ] , height : e[ a+'Height' ] };
return e[ a+'Width' ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment