in reply to Move to the end of an unbuffered CGI web page?

You could try periodically outputing <script> blocks that causes scrolling.

IE provides, window.scroll, window.scrollBy, object.scrollIntoView and window.scrollTo.

I've never done anything like this or used any of these methods. Good luck.

Replies are listed 'Best First'.
Re^2: Move to the end of an unbuffered CGI web page?
by C_T (Scribe) on Jan 04, 2005 at 17:59 UTC
    The javascript method worked like a charm. I just threw out the following to the browser:

    #===== Scroll to the end of the script print "<script>window.scrollTo(0,250000)</script>\n";
    CT
    Charles Thomas
    Madison, WI