Skip to content

Instantly share code, notes, and snippets.

@Junglecrew
Last active March 7, 2017 21:34
Show Gist options
  • Save Junglecrew/adf682b055ef6b2c165b257dcce2034c to your computer and use it in GitHub Desktop.
Save Junglecrew/adf682b055ef6b2c165b257dcce2034c to your computer and use it in GitHub Desktop.
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