controling the scrollbar on divs
I have a div with autoflow set up so of the text is taller than the size of the div the scroll bar shows up on the right hand side of the div. I have a function that adds text to the bottom of the div. I want the scroll bar to go to the bottom of the scrollbar area. I got it working in Safari, but not in Firefox (not sure about IE yet). With the following javascript.
document.getElementById('incoming-textar
ea').scrollTop=6000000000;";
Has anyone have a better way that works on all the browsers?