Problem: PhoneGap accessing external url issue in iOS or (any other phone)

Answer: It is because of whitelisting issue. Got to the project folder and edit PhoneGap.plist file.

Change value of OpenAllWhitelistURLsInWebView from false to true, also add your host name under ExternalHosts node

XHTML
1
2
3
4
5
6
7
8
9
<key>OpenAllWhitelistURLsInWebView</key>
<true/>
<key>ExternalHosts</key>
<array>
<string>www.mydomain.com</string>
</array>