1
Good morning, I am with the following doubt, I am trying to make 1 chat, and whenever a message is received, or sent, I wanted the scroll to stay low, I am Using Meteor and I am new to this, I tried the following
I have the following html code
<div class="chat">
{{#each mensagens}}
{{> list}}
{{/each}}
</div>
<form class="Insert">
<br> <br>
<center>
<input type="text" name="text"> <br><br>
<input type="submit" value="Enviar">
</center>
<br>
</form>
and the following code in the JS
Template.chat.helpers({
scroll: function(){
var objDiv = document.getElementById("chat");
objDiv.scrollTop = objDiv.scrollHeight;)
}});
See if it helps you: Link1, Link2
– rbz