I was previously using PhoneGap for an app of mine. I wasn’t using any of the device features really, but I used PhoneGap because that’s all I knew how to do in 2011.
Anyway, suddenly there are problems with the version of PhoneGap I’m using on Android, so rather than try to fix it, I decided to use a Corona WebView.
It worked great!!!
Except, anywhere I’ve got an anchor tag like this (just an example):
<a href=“http://google.com” target="_blank">go to google in new window</a>
It won’t open a new window; it just opens inside the in-app webview as if that target="_blank" wasn’t even there. It’s really disruptive to the app. Is there any way to accomplish this?
I’m open even to intercepting the request, if that’s possible, and doing a native.showWebPopup or something, although it’d be much better if there’s some way to make those links actually open the native web browser on the device instead of inside the webview.
Thanks,
Dave