I\'m trying to Open a new page when user clicks on a link. I can\'t use Angular 2 Router, because it doesn\'t have any functionalities to redirect to an external URL.
<
you can do like this in your typescript code
onNavigate(){
var location="https://google.com",
}
In your html code add an anchor tag and pass that variable(location)
Redirect Location
Suppose you have url like this www.google.com without http and you are not getting redirected to the given url then add http:// to the location like this
var location = 'http://'+ www.google.com