I am trying to implement a browser based chat system with jQuery. I want to poll the server for new messages and append them to the bottom of a div. I have two problems.
- I can't get it to append text to the div
- I don't know how to keep the div scrolled to the bottom as the text gets appended
Here's the relevant clip of my HTML:
<div id="main">
<form action='post.php' method='post'>
<div id='messages'>stuff</div><br />
<input type='text' name='usertext' />
</form>
</div>