I'm building a chat application in which I need the scrollbar to be at the bottom of the chat window (last message) on page load.
How do I accomplish this (Using jQuery or otherwise)?
Here's the chat window div:
<div id="ccwindow">
<div class="bubble me">Hey!</div>
<div class="bubble you">Hello</div>
<div class="bubble me">I saw your post. Want to buy the book. Are you an XYZ University?</div>
<div class="bubble you">Yes, sophomore year.</div>
<div class="bubble me">Great!</div>
<div class="bubble you">I'll buy it. Can you get it to school tomorrow?</div>
<div class="bubble me">Sure. See you tomorrow!</div>
</div>