Skip to content

Instantly share code, notes, and snippets.

@dmitrade
Created October 20, 2018 10:48
Show Gist options
  • Save dmitrade/95ec0455332584cc53ba935513872798 to your computer and use it in GitHub Desktop.
Save dmitrade/95ec0455332584cc53ba935513872798 to your computer and use it in GitHub Desktop.
Responsive resize height background image
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