I have a DIV chat that sends and receives messages.
Currently, messages start at the top of the DIV and work on the DIV (shown in red), and when they get to the bottom, they push up using Jquery, as shown below:
.scrollTop(activeConversationsDIV[0].scrollHeight);

I wanted to ask if there is a method for running messages at the bottom of the DIV? This will make more sense to the user as they will see what they print next to where they print it.
Is there a way to start a message flow from the bottom of the DIV running up?
Thankyou
source
share