Skip to content

Instantly share code, notes, and snippets.

@Qsppl
Last active January 3, 2017 19:29
Show Gist options
  • Save Qsppl/e2d9ab24d3d70dd6180985d2b06936b7 to your computer and use it in GitHub Desktop.
Save Qsppl/e2d9ab24d3d70dd6180985d2b06936b7 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