Skip to content

Instantly share code, notes, and snippets.

@Mons1eurEnzo
Last active September 30, 2016 06:33
Show Gist options
  • Save Mons1eurEnzo/e07ade668e486619f104a8106bcabb6d to your computer and use it in GitHub Desktop.
Save Mons1eurEnzo/e07ade668e486619f104a8106bcabb6d to your computer and use it in GitHub Desktop.
jQuery - Background Full
$(document).ready(function() {
function heightDetect() {
$(".main_head").css("height", $(window).height());
};
heightDetect();
$(window).resize(function() {
heightDetect();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment