Responsive Dynamic-Height Sticky Footer
<html> <body> <div id="page"> <p>Content</p> </div> <footer> <p>Footer</p> </footer> </body> </html>
Initialize
(function ($) { $('footer').stickyFooter(); });
Default options
(function ($) { $('footer').stickyFooter({ wrapper: $('html'), container: $('body'), delay: 200 }); });