2

Using Kendo UI Mobile v2013.1.319 and PhoneGap 2.6.0 (iOs), I'm no longer able to open links in the Safari browser.

This worked well on previous versions:

<a href="http://apache.org" data-rel="external" target="_blank">

But now it still opens in the same webview as the app itself.

Any tips how to force the links to open externally? Preferably without using javascript, as the HTML for the links is loaded dynamically through an external datasource.

Publicus
  • 1,550
  • 7
  • 18
  • 33

1 Answers1

2

May be you can use Cordova InAppBrowser

var ref = window.open('http://apache.org', '_blank', 'location=yes');
sacabuche
  • 2,781
  • 1
  • 27
  • 35