/ Published in: CSS
jQuery Scroll to bottom of page
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$("a[href='#bottom']").click(function() { $("html, body").animate({ scrollTop: $(document).height() }, "slow"); return false; });