Skip to content

Instantly share code, notes, and snippets.

@AlexandrKutsenko
Created May 18, 2018 08:59
Show Gist options
  • Save AlexandrKutsenko/13c20bc5b16ca0f1d50acf1be0e0ef88 to your computer and use it in GitHub Desktop.
Save AlexandrKutsenko/13c20bc5b16ca0f1d50acf1be0e0ef88 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