Created
November 26, 2017 12:41
-
-
Save pusanukbr/ba26f650e23f6168ce1bc38fd8ac2d8c to your computer and use it in GitHub Desktop.
Блок в высоту экрана
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function(){ | |
function heightDetect(){ | |
$(".main_header").css("min-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