Skip to content

Instantly share code, notes, and snippets.

@molochnyk
Last active April 4, 2017 20:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save molochnyk/76082d2bc2bae54feae1b8e19fabda3e to your computer and use it in GitHub Desktop.
Save molochnyk/76082d2bc2bae54feae1b8e19fabda3e to your computer and use it in GitHub Desktop.
jQuery Resize Height
$(document).ready(function() {
function heightDetect(){
$('.main_head').css('height', $(window).height());
};
heightDetect();
$(window).resize(function(){
heightDetect();
})
}); //endReady
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment