When I redirect page using below code. A page will redirect to page 3 but not redirect to div third.
this.router.navigateByUrl('/page5#third');
And when I hit URL http://localhost:4200/page5#third
then a page will redirect to dit third. If any another way for # base routing in angular then please suggest.
here is my HTML code.
<div id="first">
<div>
<h2>Image 1</h2>
</div>
<img src="assets\img\pexels-photo-39811.jpeg">
</div>
<div id="second">
<h2>Image 2</h2>
<img src="assets\img\pexels-photo-459225.jpeg">
</div>
<div id="third">
<h2>Image 3</h2>
<img src="assets\img\pexels-photo.jpg">
</div>