I have a #content div and a button component.
When I click the button, I want to scroll to the top of the #content div.
HTML:
<div id="content">
Loren ipsum
</div>
<div (click)="toTop($event)">top</div>
topscroll.component.ts:
export class TopscrollComponent implements OnInit {
constructor() { }
ngOnInit() { }
toTop(event){
...
}
}