I\'ve just upgraded to PhoneGap 1.6.1 and I can no longer get external URL\'s to open in Safari.
Prior to this version I had patched AppDelegate.m as follows:
<
to open external URL in Safari Do following steps.
1).Add your link in External Host (white list).with complete url
if you want to google url then add
e.g.: http://google.com/
2).In Cordova.plist or Phonegap.plist, change
OpenAllWhitelistURLsInWebView from Yes to No
for Android True to false.
3). write this code for opening the URL
window.location.href = "http://www.google.com";