Hi All,
Having some issues using the online Phonegap Build service and the deadline is approaching fast for this app to be delivered. When a link to a website is clicked within the app the website opens within the webview. I need this to open in the systems default external browser (Chrome / Safari etc). On android this webview behaviour doesn't matter as much as we have back buttons but iOS users have to close the app to get back to the main part of the app so it is a critical usability bug for my client.
Things I have tried:
Within the href tag:
target="_blank"
target="_system"
OnClick:
window.open( [link] , '_blank');
window.open( [link] , '_system');
Config.xml
<preference name="stay-in-webview" value="false" />
Really struggling for ideas now, help would be much appreciated!
Thanks - Trev