Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MaxMSuper/b7f926fb6249e14652880bb539de0d45 to your computer and use it in GitHub Desktop.
Save MaxMSuper/b7f926fb6249e14652880bb539de0d45 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