Skip to content

Instantly share code, notes, and snippets.

@fnnzzz
Forked from agragregra/jQuery Resize Height
Last active August 29, 2015 14:16
Show Gist options
  • Save fnnzzz/a71dfe82cf2756adff38 to your computer and use it in GitHub Desktop.
Save fnnzzz/a71dfe82cf2756adff38 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