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
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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.