External URLs do not open in the system browser in the PhoneGap IOS app. I am using PhoneGap Build 2.7.0.
JavaScript:
window.open(myURL, '_blank', 'location=yes');
Config.xml
<plugins> <plugin name="InAppBrowser" value="CDVInAppBrowser" /> </plugins> <access origin="*" />
How to solve this? when I use the URL "www.google.com" it works fine, but when I used the required URL for my application, it didnโt work even with the url working fine in the browser.
source share