Reputation: 41
How can I open URL in an ionic application?
Upvotes: 1
Views: 2142
Reputation: 22475
No need to install In App Browser plugin. Simply do
window.open(url, '_system');
Upvotes: 1
Reputation: 292
You have to install
cordova plugin add inappbrowser
then you can use
window.open(URL,'_system','location=yes'),!1;
which will open the URL in system browser
Upvotes: 0