Redirect to External Link

1

Good afternoon.

When I open an external page from a link in my ionic application, is it rendered in the common browser or in the app's own webview?

If it is rendered in the webview itself, how could I make it open the browser or something?

    
asked by anonymous 11.03.2016 / 17:08

2 answers

2

To open in the browser you can use the inappbrowser plugin. In this link you have some references of how to use. You can do this:

<a href="#" onclick="window.open('http://www.site.com', '_system');">www.site.com</a>
    
11.03.2016 / 21:29
0

If you do not have the inAppBrowser plugin installed, the external page opens in the app's own webview.

InAppBrowser replaces windows open and you can choose to open in another webview (_blank) or in the system browser (_system)

    
28.03.2016 / 12:46