Skip to content

Instantly share code, notes, and snippets.

@agragregra
Created February 18, 2015 22:02
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 26 You must be signed in to fork a gist
  • Save agragregra/d6b84c275a7d4318d793 to your computer and use it in GitHub Desktop.
Save agragregra/d6b84c275a7d4318d793 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