Skip to content

Instantly share code, notes, and snippets.

@Rafailong
Created January 29, 2014 18:28
Show Gist options
  • Save Rafailong/8693939 to your computer and use it in GitHub Desktop.
Save Rafailong/8693939 to your computer and use it in GitHub Desktop.
Div full Width/Height of viewport with jQuery
// global vars
var winWidth = $(window).width();
var winHeight = $(window).height();
// set initial div height / width
$('div').css({
'width': winWidth,
'height': winHeight,
});
// make sure div stays full width/height on resize
$(window).resize(function(){
$('div').css({
'width': winWidth,
'height': winHeight,
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment