Scroll 'div' to the bottom
If you would like to move your scroll to the bottom of a div, use the following code on page load function. This is very handy when you would like to create chat windows where the chat log div should always scrolled down to bottom to see the latest chat dialogs
body onload="document.getElementById('testdiv').scrollTop = document.getElementById('testdiv').scrollHeight"
This assumes that id of the div you want to work with has is "testdiv".
Labels: javascript, scroll bottom
0 Comments:
Post a Comment
<< Home