Last active
March 10, 2017 20:38
-
-
Save deGizon/1b2f2f7191fefb04ff7fc4c2b6251be3 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 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