Replies: 1 comment
-
You can use the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I use cordova and the inappbrowser to open a webapplication. In the webapplication I want external links open in the system browser. So the question is how can I open a link from the inappbrowser to the sytem webbrowser.
What I have tried is to run somehting like this in the local cordova index.html. Then a system browser is opened, worked fine. But what I need is to open the system browser while clicking a link in the inappbrowser. What happens is that the links loads over the page in the inappbrowser instead of opening the system browser.
var targetUrl = "https://www.example.com";
var inAppBrowserRef = cordova.InAppBrowser.open(targetUrl, '_system', 'location=yes,hidden=yes,usewkwebview=yes');
I'm using iOS.
Can someone give me some pointers how to address this?
Beta Was this translation helpful? Give feedback.
All reactions