I am creating an application for Android and iOS using Cordva (v3.3.0) and JQuery Mobile. Now I am trying to use the InAppBrowser plugin. On Android, this works great, but on iOS, the webpage seems to open in the Cordoba WebView, and not in the system browser. The problem is that it is not possible to return to the application as soon as the browser opens, because the location / return button is missing.
I already tried to remove the plugin and add it again, and also updated Cordoba to the latest version (3.3.0)
Can someone help me find a bug?
Thank!
config.xml
<access origin="*" />
<feature name="InAppBrowser">
<param name="ios-package" value="CDVInAppBrowser" />
</feature>
index.html
<a href="#" onclick="window.open('http://google.com', '_system', 'location=yes');" data-role="button" data-icon="arrow-r" data-iconpos="right">Google</a>
Log output
Resetting plugins due to page load.
Finished load of: https:
source
share