How to disable in-app browser for Hybrid phone app?

0
Hi there, I have a hybrid phone app which uses some links which need to be opened in the browser. The default behaviour is that the in-app browser is opened but I rather want it to open in the phones native browser (looks a lot nicer and works better). What is the best way to achieve this? Thanks! Kind regards, Tim
asked
2 answers
2

If you look at the PhoneGap InAppBrowser documentation here, you can set the target of the target in which to load the URL. Set the target to  _system. So it should be something like this:

 window.open('https://www.google.com/', '_system');

 

answered
0

Stackoverflow is your friend: https://stackoverflow.com/questions/20011753/phonegap-open-external-link-in-default-browser-outside-the-app

Regards,

Ronald

 

answered