ngOnInit(): void
{
this.router.events.subscribe((evt) => {
if (!(evt instanceof NavigationEnd)) {
return;
}
document.body.scrollTop = 0;
});
}
I'm using this code for scrolltop on page load, it's not working on firefox.
Please help.
Thanks.