How do I use jquery to scroll right down to the bottom of an iframe or page?
|
If you want a nice slow animation scroll, for any anchor with
Feel free to change the selector. |
|||||||
|
|
scrollTop() returns the number of pixels that are hidden from view from the scrollable area, so giving it:
will actually overshoot the bottom of the page. For the scroll to actually 'stop' at the bottom of the page, the current height of the browser window needs subtracting. This will allow the use of easing if required, so it becomes:
|
|||||||||||||
|
|
For example:
|
|||
|
After this thread didn't work out for me for my specific need (scrolling inside a particular element, in my case a textarea) I found this out in the great beyond, which could prove helpful to someone else reading this discussion: Since I already had a cached version of my jQuery object, the code I added to my event handler was simply this:
(thanks Ben) |
|||
|
|
do this when your div height is messed up and gives false values This doesn't require Div height. |
|||
|
|
|
This one worked for me:
|
||||
|
|