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?
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?
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>
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)