Jump to content

DIV textbox area


ILYAS415

Recommended Posts

Hey hi people.

I need help with a DIV textarea html code.

Basically what the code does is creates a scroll so the visitors can scroll down a chat kind of thing.

 

Im trying to make the scoll start at the bottom and continue to scroll to the bottom of the DIV textarea. Heres my code:-

<div align="center" id="chatwindow" style="overflow:auto; height:300px; width:99%; text-align:left;">
</div>

 

I can't seem to find any codes for the textarea to scroll it down but the closestone ive gotten to is...

function scrollToBottom(el) {
    el.scrollTop=el.scrollHeight; 
}
scrolltoBottom(chatwindow);

 

I really need someone to tell me how i could do this

 

Thanks.

Link to comment
https://forums.phpfreaks.com/topic/83847-div-textbox-area/
Share on other sites

Okay ive fixed the problem i finally found a piece of coding on the internet which let me scroll down continiously but now im a bit stuck. Basically on firefox when i visit the page the div textbox almost appears to continiously shake or refresh which it doesn't do on ie5. Any ideas?

Link to comment
https://forums.phpfreaks.com/topic/83847-div-textbox-area/#findComment-426754
Share on other sites

try this:

 

<script language="javascript">
function scrollToBottom() 
{
chatwindow.scrollTop = chatwindow.scrollHeight;
}
window.onload = function()
{
setTimeout("scrollToBottom()",1);
}
</script>

<div align="center" id="chatwindow" style="overflow:auto; height:300px; width:99%; text-align:left;border:solid 1px black">
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
messege text here<br>
</div>

Link to comment
https://forums.phpfreaks.com/topic/83847-div-textbox-area/#findComment-426921
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.