I need all links open in a new browser window and not in the application. This particularly do know but it happens that I am occupying a google maps, it has a link to "Terms and Conditions" and click on, opens into ionic my application and can not pass it. Anyone have any idea if there is a directive or service that does this?
I'm working with ionic framework.
I Assume you are looking for this tutorial. It will stop all your tag and open those links in a InAppBrowser.
window.open(‘http://example.com’, ‘_system’); Loads in the system browser
window.open(‘http://example.com’, ‘_blank’); Loads in the InAppBrowser
window.open(‘http://example.com’, ‘_blank’, ‘location=no’); Loads in the InAppBrowser with no location bar
window.open(‘http://example.com’, ‘_self’); Loads in the Cordova web view
Tutorial Here