Skip to content

Instantly share code, notes, and snippets.

@bezenson
Created April 27, 2014 12:54
Show Gist options
  • Save bezenson/11344917 to your computer and use it in GitHub Desktop.
Save bezenson/11344917 to your computer and use it in GitHub Desktop.
Get Viewport Width
function viewportWidth() {
var $body = $('body'),
viewPortWidth = $body.css('overflow', 'hidden').width();
$body.css('overflow', '');
return viewPortWidth;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment