I am new to PhoneGap and Android.I am unable to access Extrenal URL\' like google from PhoneGap,i tried Iframe and Window.Location.Href but not sure why it\'s not working.>
Opening an external link in phonegap / android is only possible two ways: Source: https://build.phonegap.com/blog/access-tags
check blogpost of phonegap. They're explaining what the android default is, and what you can do about it.
Follow the discussing on the phonegap forum: http://community.phonegap.com/nitobi/topics/make_links_use_external_broswer_consistently
Edit:
Add the following code to your config.xml.
Add:
function loadURL(url){
navigator.app.loadUrl(url, { openExternal:true });
}
Add:
Url