jQuery Scroll to bottom of page


/ Published in: CSS
Save to your folder(s)

jQuery Scroll to bottom of page


Copy this code and paste it in your HTML
  1. $("a[href='#bottom']").click(function() {
  2. $("html, body").animate({ scrollTop: $(document).height() }, "slow");
  3. return false;
  4. });

Report this snippet


Comments


You need to login to view comments.