Skip to content

Instantly share code, notes, and snippets.

@stanjke
Created July 1, 2017 11:46
Show Gist options
  • Save stanjke/1620e550c32b2c25ea46903ed9830b18 to your computer and use it in GitHub Desktop.
Save stanjke/1620e550c32b2c25ea46903ed9830b18 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
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