Hi,
I have a Button, when clicked, I'd like to open a url in a new browser instance. The following works on desktop:
Window.open(url, "_blank", null);
When I run the same code in a UIWebView on ios, nothing happens. Ideally I'd like to open a new instance of mobile safari directed to that url. Does anyone have any ideas of how to do this? I can fall back on catching the url in my objective-c code, but ideally there's something we could do directly in javascript to trigger mobile safari to open,
Thanks