How to hide the Inappbrowser bar?

Asked

Viewed 485 times

0

I am developing a mobile application that basically loads a web interface inside the app through the Inappbrowser plugin. The idea of the project is exactly to simulate the operation of an app. Everything works normally, however the Inappbrowser plugin displays a bar in the browser as in the pritscreen below, and I need that bar nay be shown! Does anyone know any way to do this?

App This is the code I have so far (The variable inputUrl is completed by the user in another form):

var url = "http://" + inputUrl + "/mobile";
window.open(url,'_self');

1 answer

1


Try this way, it will open the link in the internal browser without the address bar:

// Open in app browser
var url = "http://" + inputUrl + "/mobile";
window.open(url, '_blank', 'location=no');

Browser other questions tagged

You are not signed in. Login or sign up in order to post.