Skip to content

Instantly share code, notes, and snippets.

@Scordavis
Forked from agragregra/jQuery Resize Height
Created April 25, 2017 20:11
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 Scordavis/a9683c5217a01a7d3b8ba81e8377f87a to your computer and use it in GitHub Desktop.
Save Scordavis/a9683c5217a01a7d3b8ba81e8377f87a to your computer and use it in GitHub Desktop.
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