I have a big form and, below the button that submitts it, a div that contains an image of a progress bar, to show to the user that the http request is being precessed:
<div *ngIf="formSubmitted">
<img src="assets/progressbar.gif">
</div>
When the form is submitted, the image is showed but, as my form is quite big and takes all the screen, the user needs to scroll down to see it. How can i use Angular 9 to force the browser to scroll down so the user can see that content? Obs: I don't want the browser scroll to the bottom of the page, but to the bottom of the div.