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');