In Angular I want to scroll to component using button that placed in another component.Here is my code for the first component
<div id='banner' class="col-5 offset-1 d-flex justify-content-center align-items-center">
<button class="btn mt-5">
<span class="mx-3">Go</span>
</button>
</div>
My second component
<div id="services" class="container-fluid">
</div
My app.component.html
<app-banner></app-banner>
<app-services></app-services>
Add click event to call function inside
BannerComponent
.Use
ViewPortScroller
to scroll to anchor (id="services") in ServicesComponent.