Skip to content

Instantly share code, notes, and snippets.

@andreymakaroff
Created April 15, 2015 20:04
Show Gist options
  • Save andreymakaroff/35cd82813e1255d76cf5 to your computer and use it in GitHub Desktop.
Save andreymakaroff/35cd82813e1255d76cf5 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