2

There are so many questions related to this like, Phonegap - How to open external link inside the app .

I want to open the website URL inside the app (not asking which browser need to open) when open the app.

But it asked which browser you need to open.... What I have done mistake here? (This is working fine on emulator, but when I install it to android phone it asked which browser......)

My config file

<access origin="*" />
<plugin name="cordova-plugin-whitelist" spec="~1.3.2" />
<plugin name="cordova-plugin-inappbrowser" spec="~1.7.2" />

Index File

<script>
    window.open('http://example.com', '_self', 'location=no,hidden=yes,closebuttoncaption=Done,toolbar=no'); 
</script>

1 Answers1

5

You have to configure the whitelist plugin to allow the internal navigation of external sites, you can do it with allow-navigation tag like this:

<allow-navigation href="*" />
jcesarmobile
  • 51,328
  • 11
  • 132
  • 176