Try It Editor
Tip: Press
Ctrl/⌘ + Enter
to Run
▶ Run
Reset
Copy
Download
Code
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Animate scrollTop</title> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <style>body{height:1600px;} #go{position:fixed;top:8px;left:8px}</style> </head> <body> <button id="go">Scroll to bottom</button> <script> $("#go").on("click", function(){ $("html, body").animate({scrollTop: $(document).height()-$(window).height()}, 600); }); </script> </body> </html>
Output