Last active
August 29, 2015 14:16
-
-
Save davidanton1d/0951e3062d210d313d3a to your computer and use it in GitHub Desktop.
One-liner ugly jQuery sticky footer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Sticky footer | |
$(document).ready(function adjustFooterMargin(){$("#footer").css("margin-top", Math.max(0, $(window).height() -$("#top").height() -$("#wrapper").height() -$("#footer").height() -50) + "px"); }); $(window).resize(function(){adjustFooterMargin(); }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment