faqts : Computers : Programming : Languages : JavaScript : Windows

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

45 of 55 people (82%) answered Yes
Recently 6 of 10 people (60%) answered Yes

Entry

How can I scroll a document.to the bottom?
How can I scroll a document.to the bottom?

Apr 20th, 2000 12:19
Martin Honnen,


Use
  window.scrollTo(0, document.height ?
    document.height : document.body.scrollHeight)
Example

<HTML>
<HEAD>
</HEAD>
<BODY ONLOAD="window.scrollTo(0, document.height ? document.height : 
document.body.scrollHeight)">
<SCRIPT>
for (var i = 0; i < 40; i++)
  document.write('JavaScript.FAQTs.com<BR>');
</SCRIPT>
</BODY>
</HTML>