I am wrapping a responsive website into a Cordova app for Android and iOS.
In my DeviceReady
I just open window.location="http://website"
and all internal links work fine and stay in app view.
Now I would need some links to open into system browser. Biggest reason for this is iPhone's / iPad's missing the back button and it is hard to navigate back to the website.
All my "code" is in website and Cordova just wraps the website into a "mobile app".
What can I say in website code to make Cordova to open system browser. I have tried window.open(..., "_system")
, "_blank"
etc. and with normal link as target="_blank"
but still all these are opened in my app view, that is, not in system browser.
How can I force a link to be opened in the System Browser?
All help appreciated! Cheers :)