0
I have a div with overflow: auto; I press to leave the scrol of this div at the lowest point, to show only the newest information:
div{
	width: 150px;
	height:80px;
	border: 1px solid;
  padding:5px;
	overflow: auto;
}
<div>
informação antiga<br>
informação antiga<br>
informação antiga<br>
informação antiga<br>
informação nova<br>
informação nova<br>
informação nova<br>
informação nova<br>
informação nova<br>
</div>
This question has been answered using pure Javascript here at this forum
– Maurício Samy Silva