Skip to content

Instantly share code, notes, and snippets.

@Nazar32
Created June 19, 2016 16:03
Show Gist options
  • Select an option

  • Save Nazar32/82b0dda32d46e2ee8f822324a1fb3264 to your computer and use it in GitHub Desktop.

Select an option

Save Nazar32/82b0dda32d46e2ee8f822324a1fb3264 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