Skip to content

Instantly share code, notes, and snippets.

@thotbox
Last active August 29, 2015 14:04
Show Gist options
  • Save thotbox/b9c41f5357c47ca491fa to your computer and use it in GitHub Desktop.
Save thotbox/b9c41f5357c47ca491fa to your computer and use it in GitHub Desktop.
JavaScript: Viewport Height
$(document).ready(function(){
$window = $(window);
var targetHeight = $window.height();
var viewportWidth = $window.width();
if (viewportWidth > 640) {
$('#targetID').css({ height: targetHeight });
}
});
$(window).bind('resize', function () {
var targetHeight = $window.height();
var viewportWidth = $window.width();
if (viewportWidth > 640) {
$('#targetID').css({ height: targetHeight });
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment