hello,
i want to open an external link with the cordova inappbrowser, but it don’t work
i have installed cordova-plugin-inappbrowser and using ionic 2 RC1
On my android device there is no problem with the same code…
my code looks like: html
< a (click)=“openInExternalBrowser(item?.website)” class=“ext__link” *ngIf=“item?.website”>
go to page
my typescript
openInExternalBrowser(url) : void {
window.open(url,'_system','location=no');
console.log(url);
}
the console.log() works, and the url is also correct