Skip to content

Instantly share code, notes, and snippets.

@DriginCode
Last active October 16, 2016 16:37
Show Gist options
  • Save DriginCode/5f71aaf1aa3f67257bdb38bc29d444ae to your computer and use it in GitHub Desktop.
Save DriginCode/5f71aaf1aa3f67257bdb38bc29d444ae to your computer and use it in GitHub Desktop.
Jquery resize height
$(document).ready(function() {
function heightDetect() {
$(".main_head").css("height", $(window).height());
};
heightDetect();
$(window).resize(function() {
heightDetect();
});
});
.main_head
min-height: 620px
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment