Created
August 2, 2017 11:05
-
-
Save kom1che/976fc8dea36908d0e87594cb57841846 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
function heightDetection(){ | |
$(".main_head").css("height", $(window).height()); | |
}; | |
heightDetection(); | |
$(window).resize(function(){ | |
heightDetection(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment