Skip to content

Instantly share code, notes, and snippets.

@pivovar
Created March 26, 2015 11:30
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 pivovar/1fe041fcb2d86d4d931e to your computer and use it in GitHub Desktop.
Save pivovar/1fe041fcb2d86d4d931e 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