1

I am new Cordova web Developer. I created application according to following link. My reference link And I put my web Site link and load application from emulator.application load web browser and show link .

enter image description here

but I want show only page, without URL link.I refer following question and change my index file , build and reload project ,but still show url.

 window.open("http://18.16.253.15/", '_blank', 'toolbar=no')

expect some expert help. my cordova version is 5.4.1

refer question this link

Community
  • 1
  • 1
uma
  • 1,477
  • 3
  • 32
  • 63

1 Answers1

2

I haven't used cordova for Ubuntu, but cordova for iOS and Android, and I'm a little bit confused about your image. You are calling an external url, right? What I see in your image is, that the page is opened in the standard browser of Ubuntu. In a standard browser it is normal, that the url is shown in the address field.

If you want to load an external url inside of your app, you should install the InAppBrowser, which you find here:

https://www.npmjs.com/package/cordova-plugin-inappbrowser

And follow the instruction there, it is working, I'm using it in every of my apps.

Joerg
  • 3,102
  • 2
  • 24
  • 30
  • @Joerge Thanks , after I installed 'cordova plugin add cordova-plugin-inappbrowser' . every thing is ok. – uma Dec 22 '15 at 07:53