This question has been asked a few times before, but all of the solutions date back to 2013, and I haven't got any of those answers to work with the latest versions of PhoneGap Build / Cordova.
I have a link like this which I want to open in Chrome on Android.
<a href="https://twitter.com/humphreybc" target="_blank">Twitter</a>
In config.xml
I have the following rules:
<allow-navigation href="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<access origin="*" />
I have tried using window.open(url, _system)
as suggested in other answers – and included the cordova-plugin-inappbrowser
plugin – however:
- This solution doesn't seem to work, links just open in the in-app browser
- I'd rather simply use target="_blank" instead of using an onClick handler for each link
I've also followed the instructions in this blog and added a handler for links with the _target='blank'
attribute:
$(document).on('click', 'a[target="_blank"]', function (e) {
e.preventDefault();
var url = this.href;
window.open(url,"_system");
});
...but still the links open in the in-app browser.