Back to top button Javascript
// Scroll to the bottom of the page
document.documentElement.scrollTop = document.documentElement.scrollHeight;
// Scroll to the bottom of the page
window.scrollTo({
top: document.body.scrollHeight,
behavior: 'smooth' // Optional: Add smooth scrolling effect
});
// Select an element at the bottom of the page
const bottomElement = document.getElementById('bottom');
// Scroll to the bottom element
bottomElement.scrollIntoView({ behavior: 'smooth' });