Angular - Webpage redirect to homepage when opening external URL

indiantrain

Indian Train

Posted on August 17, 2022

Angular - Webpage redirect to homepage when opening external URL

Whenever I open an external URL from my webpage, this webpage redirect to homepage. The external URL gets open in new tab but the webpage from which I am opening the external URL it redirect to homepage. I don't know why this is happening I tried all the possible but couldn't get rid of it.

xyz.html

<a (click)="goToLink('https://www.example.com/abc')">page link</a>

xyz.ts

goToLink(url: string) {
  window.open(url, "_blank");
}
Enter fullscreen mode Exit fullscreen mode
💖 💪 🙅 🚩
indiantrain
Indian Train

Posted on August 17, 2022

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related