Skip to content

Instantly share code, notes, and snippets.

@chickenfoot88
Last active April 26, 2016 09:15
Show Gist options
  • Save chickenfoot88/fb598d29883d792550061dd2f2cd1ddc to your computer and use it in GitHub Desktop.
Save chickenfoot88/fb598d29883d792550061dd2f2cd1ddc to your computer and use it in GitHub Desktop.
resize
$(document).ready(function() {
function heightDetect(){
$(".main_head").css("height", $(window).height());
};
$(window).resize(function(){
heightDetect();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment