Answers for "how to make a link go to certain part of page"

50

go to another html page in javascript

window.location.href = "http://mywebsite.com/home.html";
Posted by: Guest on July-18-2019
0

how do you make a link to the top of a page

<a href="#top">Back to top of page</a>
Posted by: Guest on March-15-2020
-1

how to add changes every time you route navigate to page in angular

// Place import at the top
import { Router,NavigationStart} from '@angular/router';

//Place the code below inside your class
constructor(private router: Router){}

ngOnInit(){
   this.router.events.subscribe(event =>{
      if (event instanceof NavigationStart){
   		
      }
   })
}
Posted by: Guest on March-05-2020

Code answers related to "how to make a link go to certain part of page"

Code answers related to "Javascript"

Browse Popular Code Answers by Language