uadelphiashenstoneb
New Member
\[code\]<div id="test" style="height:200px;overflow:scroll;"> ...large amount text... <div id="bottom"></div></div>\[/code\]Throughout the session, jQuery will be injecting more and more text into \[code\]#test\[/code\].The problem is, once the text is past the fold, you can't see it without manually scrolling. To remedy this, I made it skip to \[code\]#bottom\[/code\]. The problem is is that this disrupts the rest of the page and causes it to jump back up to \[code\]#bottom\[/code\] regardless of where the user may be on the page at that point.How can I make the scroll stay focused on the bottom without making the window jump back up to \[code\]#bottom\[/code\]? What's another way to do this?