Dear all,
I add some text to the textarea and the text will be added like this:
var mdiv = document.getElementById("messages");
for (i=0; i<2000; i++) {
mdiv.innerHTML = mdiv.innerHTML + "text <br/>\r\n";
}
How can I put the scrollbar down, to the last input? Now, the user have to move the...