Skip to content

Instantly share code, notes, and snippets.

@kodie
Last active January 9, 2025 18:47
Show Gist options
  • Save kodie/9ce028db02cdfbc12b221cfab2671f1d to your computer and use it in GitHub Desktop.
Save kodie/9ce028db02cdfbc12b221cfab2671f1d to your computer and use it in GitHub Desktop.
Ensures the highest the footer will ever be on the screen is the bottom of the viewport
// Ensures the highest the footer will ever be on the screen is the bottom of the viewport
var stickyFooter = function () {
var footer = document.querySelector('footer')
if (window.innerHeight > document.body.scrollHeight) {
footer.style.bottom = 0
footer.style.left = 0
footer.style.position = 'fixed'
footer.style.right = 0
} else {
footer.style.bottom = null
footer.style.left = null
footer.style.position = null
footer.style.right = null
}
}
window.addEventListener('load', stickyFooter);
window.addEventListener('resize', stickyFooter);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment