Skip to content

Instantly share code, notes, and snippets.

@squirelo
Created September 30, 2014 10:24
Show Gist options
  • Save squirelo/5470ac512a2e333961c1 to your computer and use it in GitHub Desktop.
Save squirelo/5470ac512a2e333961c1 to your computer and use it in GitHub Desktop.
resize a background image
$(document).ready(function() {
$('.full-image').css({'height':(($(window).height()))+'px'});
$(window).resize(function(){
$('.full-image').css({'height':(($(window).height()))+'px'});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment