Skip to content

Instantly share code, notes, and snippets.

@Ivanopalas
Created February 23, 2015 20:18
Show Gist options
  • Save Ivanopalas/60a8fe150165bc59d9d5 to your computer and use it in GitHub Desktop.
Save Ivanopalas/60a8fe150165bc59d9d5 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