Last active
August 29, 2015 14:16
-
-
Save AlexMcowkin/b558b1c9e5401ffac4a2 to your computer and use it in GitHub Desktop.
jQuery Resize Height
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