Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Created May 23, 2013 21:45
Show Gist options
  • Save jlittlejohn/5639677 to your computer and use it in GitHub Desktop.
Save jlittlejohn/5639677 to your computer and use it in GitHub Desktop.
JS: Sticky Footer
function stickyNav() {
var footer = $("footer");
var pos = footer.position();
var height = $(window).height();
height = height - pos.top;
height = height - footer.height();
if (height > 0) {
footer.css({'margin-top' : height+'px'});
}
}
$(window).bind("load resize", stickyNav);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment