Skip to content

Instantly share code, notes, and snippets.

@denys-vladymyrov
Last active May 2, 2016 18:29
Show Gist options
  • Save denys-vladymyrov/9c9c437d9dccac890f3136566ec5f52a to your computer and use it in GitHub Desktop.
Save denys-vladymyrov/9c9c437d9dccac890f3136566ec5f52a to your computer and use it in GitHub Desktop.
Javascript
function screenHeight(){
$(".main-head").css("height", $(window).height());
}
$(document).ready(function() {
screenHeight();
$(window).resize(function(){
screenHeight();
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment