Skip to content

Instantly share code, notes, and snippets.

@smorev
Created May 9, 2018 12:08
Show Gist options
  • Select an option

  • Save smorev/7a836ad28605a88fdd77053c493bc806 to your computer and use it in GitHub Desktop.

Select an option

Save smorev/7a836ad28605a88fdd77053c493bc806 to your computer and use it in GitHub Desktop.
A picture in browser resizes
function heightDetect() {
$('.main-head').css('height', $(window).height());
};
heightDetect();
$(window).on('resize', function () {
heightDetect();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment