Good morning, I'm with the following doubt, I'm trying to do 1 chat, and whenever a message is received or sent, I wanted the scroll to be down, I'm using Meteor and I'm new to it, next
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 JS
Template.chat.helpers({
scroll: function(){
var objDiv = document.getElementById("chat");
objDiv.scrollTop = objDiv.scrollHeight;)
}});