Skip to content

Instantly share code, notes, and snippets.

@GarySwift
Created September 25, 2017 09:10
Show Gist options
  • Save GarySwift/e137785f43ee6d07ed6731c78a3e70b0 to your computer and use it in GitHub Desktop.
Save GarySwift/e137785f43ee6d07ed6731c78a3e70b0 to your computer and use it in GitHub Desktop.
Sticky Footer #FoundationPress #JavaScript
/* Sticky Footer */
(function($) {
var $footer = $('#footer-container'); // only search once
$(window).bind('load resize orientationChange', function () {
var pos = $footer.position(),
height = ($(window).height() - pos.top) - ($footer.height() -1);
if (height > 0) {
$footer.css('margin-top', height);
}
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment