I am trying to open a link in the native browser or other external browser from my app, but I can only get it to open an in app browser.
I have the inappbrowser installed as specified here:
cordova.apache.org/docs/en/3.0.0/cordova_inappbrowser_inappbrowser.md.html#window.open
I call the browser window like this: window.open("http://yourmindandmedia.com", '_system');
the result is the same as if I do this: window.open("http://yourmindandmedia.com", '_blank');
When I hit the device back button, my app is all washed out displaying no graphics and supporting no events. I've tried this as well:
navigator.app.loadUrl("yourmindandmedia.com", { openExternal:true });
to the same results.
These examples are done in Android environment, but I will be implementing in iOS as well. Ideally, the solutions are identical.
Thanks in advance.