Skip to content

Instantly share code, notes, and snippets.

@jonaslsl
Created January 19, 2015 12:01
Show Gist options
  • Save jonaslsl/e62434e2ef387a0948a1 to your computer and use it in GitHub Desktop.
Save jonaslsl/e62434e2ef387a0948a1 to your computer and use it in GitHub Desktop.
vertical centering js
<script>
/* get the screen size and sets each section to its height */
$(window).on("load resize", function() {
var width = $(window).width();
var height = $(window).height();
var menu = $(".nav").height();
$('.h').css({ 'height' : ( ($(window).height() ) - menu ) }) ;}
});
// Bind event listener
$(window).resize();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment