Skip to content

Instantly share code, notes, and snippets.

@Rockbass
Created August 8, 2015 14:33
Show Gist options
  • Save Rockbass/f8ef83cc30923f315782 to your computer and use it in GitHub Desktop.
Save Rockbass/f8ef83cc30923f315782 to your computer and use it in GitHub Desktop.
jQuery Resize
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