Skip to content

Instantly share code, notes, and snippets.

@LipinArts
Last active August 7, 2016 19:40
Show Gist options
  • Save LipinArts/85d6310ceb6bcabeebe10d6d8847b3ab to your computer and use it in GitHub Desktop.
Save LipinArts/85d6310ceb6bcabeebe10d6d8847b3ab to your computer and use it in GitHub Desktop.
function heightDetect() {
$('.main_head').css('height', $(window).height()); //высота header на всю ширину экрана
};
heightDetect();
$(window).resize(function() {
heightDetect();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment