Skip to content

Instantly share code, notes, and snippets.

@dizavi
Last active January 5, 2018 02:37
Show Gist options
  • Save dizavi/be1797d9a394c384789191a5e5b6ea26 to your computer and use it in GitHub Desktop.
Save dizavi/be1797d9a394c384789191a5e5b6ea26 to your computer and use it in GitHub Desktop.
jQuery Resize Height
function heightDetect() {
$(".main_head").css("height", $(window).height());
};
heightDetect();
$(window).resize(function() {
heightDetect();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment