Reputation: 507
I am new in phonegap. Phonegap ios app anchor link not open in native browser. All link open in app. How to anchor link open in native browser.
Upvotes: 0
Views: 322
Reputation: 3550
Common problem :)
Use the InApp Browser plugin, set the target
(2nd param) of the open
funcion to _system
. That should open the link in the default system browser.
You can now also open links inside the app, in the 'In App Browser' if you like. Pass in _blank
to achieve that.
Hope that helps, Eddy
Upvotes: 2