Skip to content

Instantly share code, notes, and snippets.

@Borovensky
Last active March 29, 2016 08:30
Show Gist options
  • Save Borovensky/b6abe409a8260c1397f0 to your computer and use it in GitHub Desktop.
Save Borovensky/b6abe409a8260c1397f0 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
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