Skip to content

Instantly share code, notes, and snippets.

@AnatoliyKhaulin
Created May 6, 2015 13:38
Show Gist options
  • Select an option

  • Save AnatoliyKhaulin/3304d83c3f969286f62e to your computer and use it in GitHub Desktop.

Select an option

Save AnatoliyKhaulin/3304d83c3f969286f62e to your computer and use it in GitHub Desktop.
$(document).ready(function() {
function vHeight() {
$(".class").css("min-height", $(window).height());
};
vHeight();
$(window).resize(function() {
vHeight();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment