I want to open the link in a system browser, for example, in ios in Safari and for android chrome (regardless of the default browser).
The problem is that the link does open in the system browser, but it also opens in the application. I want the link to open only in the system browser, and not inside the application.
this is my code.
<a ng-href="http://example.com/login/{{user._id}}" onclick="window.open(this.href, '_system', 'location=yes')" class="ion-home color-primary item"> Dashboard</a>
Keep in mind that im also passes id to my endpoint.
source
share