jQuery Scroll to bottom of page/iframe
How do I use jquery to scroll right down to the bottom of an iframe or page? Mark Ursino 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. scrollTop() returns the number of pixels that are hidden from view from the scrollable area, so giving it: $(document).height() will actually overshoot the bottom of the page. For the scroll to actually 'stop' at the bottom of the