I open web page in my cordova app with
cordova.InAppBrowser.open('...', '_self','location=no,hidden=yes');
Is it possible to open links on this page with InAppBrowser _blank ?
Now I have an error
InAppBrowser does not support Cordova API calls
Thanks
Alright, by default InAppBrowser plugin installs in Cordova app, so no need to add any explicit plugin..
use this code to open
Updated:
Options for the InAppBrowser. Optional, defaulting to: location=yes. (String)
The options string must not contain any blank space, and each feature's name/value pairs must be separated by a comma. Feature names are case insensitive. All platforms support the value below:
location: Set to yes or no to turn the InAppBrowser's location bar on or off. Android only:
hidden: set to yes to create the browser and load the page, but not show it. The loadstop event fires when loading is complete. Omit or set to no (default) to have the browser open and load normally.
More info on https://github.com/apache/cordova-plugin-inappbrowser