Skip to content

Instantly share code, notes, and snippets.

@rxbot420
Created November 28, 2016 19:53
Show Gist options
  • Save rxbot420/2b0960bfe318df29d3f52908f0106339 to your computer and use it in GitHub Desktop.
Save rxbot420/2b0960bfe318df29d3f52908f0106339 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