Following this great answer
I'm using cordova 2.0.
I need to open in safari window some specific links. But at the same time I need to load external ads in the same WebView. So I'm using this conf:
OpenAllWhitelistURLsInWebView = YES
ExternalHosts = ['*']
Setting that I'm not having any problems with ads/GA/et. However, for links I've tried using target=_blank as many posts said but setting ExternalHosts = ['*']
seems to break the target=_blank
functionality.
example
<a href='external.com' target=_blank> open in Safari</a>
<a href='internal.com' > open in WebView</a>
Question:
It is possible to force a link target to be opended into safari window using ExternalHosts = ['*']
and OpenAllWhitelistURLsInWebView = YES
??