jqueryscrollscrollto

jQuery Scroll to bottom of page/iframe


How do I use jquery to scroll right down to the bottom of an iframe or page?


Solution

  • If you want a nice slow animation scroll, for any anchor with href="#bottom" this will scroll you to the bottom:

    $("a[href='#bottom']").click(function() {
      $("html, body").animate({ scrollTop: $(document).height() }, "slow");
      return false;
    });
    

    Feel free to change the selector.