How to hide the InAppBrowser bar?

0

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

ThisisthecodeIhavesofar(TheinputUrlvariableispopulatedbytheuserinanotherform):

varurl="http://" + inputUrl + "/mobile";
window.open(url,'_self');
    
asked by anonymous 13.06.2016 / 15:58

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');
    
13.06.2016 / 16:46