var link = 'www.nytimes.com'
window.open(link, '_blank', '');
On iPhone, above code opens the link but there is no way to go back to the application.
Please advise.
var link = 'www.nytimes.com'
window.open(link, '_blank', '');
On iPhone, above code opens the link but there is no way to go back to the application.
Please advise.
Hello Lincoln,
You may try to open your link for example in Safari for iOS devices. Hope this link will be useful for you: https://getsatisfaction.com/apperyio/...
When I do the following code, I get "Undefined Object" for window.plugin.childBrowser.
Can you help?
try {
var cb = window.plugins.childBrowser;
if(cb !== null) {
cb.showWebPage(url);
} else {
alert("CB is null");
}
} catch (e){
alert(e);
}
Hi Lincoln -
In new Cordova version 'childBrowser' is deprecated, you can use now InAppBrowser: https://github.com/apache/cordova-plu...