Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save nerdyrasa/a57dad840e0fbe8d5648a661b542e29d to your computer and use it in GitHub Desktop.

Select an option

Save nerdyrasa/a57dad840e0fbe8d5648a661b542e29d to your computer and use it in GitHub Desktop.
// https://css-tricks.com/forums/topic/setting-a-div-height-to-the-window-viewport-size/
$(document).ready(function(){
resizeDiv();
});
window.onresize = function(event) {
resizeDiv();
}
function resizeDiv() {
vpw = $(window).width();
vph = $(window).height();
$(‘#somediv’).css({‘height’: vph + ‘px’});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment