How do you open links in the devices native browser when using Cordova 3.0 on iOS?
People have suggested using window.open( url, "_system" )
but this does not work in Cordova 3.0.
My Attempt
if( navigator.app ) // Android
navigator.app.loadUrl( url, {openExternal:true} )
else // iOS and others
window.open( url, "_system" ) // opens in the app, not in safari
Does anyone know of a solution that works with Cordova 3.0?
Thanks