Skip to content

Instantly share code, notes, and snippets.

@GoodProject
Forked from agragregra/jQuery Resize Height
Created October 3, 2015 07:17
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 GoodProject/f6c571f5a50743fb7ff4 to your computer and use it in GitHub Desktop.
Save GoodProject/f6c571f5a50743fb7ff4 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