i don't know Cordova. I am trying to active a user experience where a link INSIDE a phonegap onClick open on the user's system's browser -- outside the app -- i tried all this NOT working:
<a href="http://www.google.com" onclick="window.open('http://www.google.com', '_system');">LINK1</a>
<a href="http://www.google.com" onclick="window.open('http://www.google.com', '_system' 'location=yes');">LINK2</a>
<a href="#" onclick="window.open(encodeURI('http://www.google.com'), '_system', 'location=yes');">LINK3</a>
<a href="#" onclick="window.open(encodeURI('http://www.google.com'), '_system', 'location=no');">LINK4</a>
All these are openeing the link INSIDE the app...
l also added : plugin name="InAppBrowser" value="CDVInAppBrowser" - in the config.xml
How do i launch a link in an outside browser?