I open a child browser with the following code from this forum, which works well:
function OpenBrowser() {
console.log("OpenBrowser() called");
var appControl = new tizen.ApplicationControl("http://tizen.org/appcontrol/operation/view",target );
tizen.application.launchAppControl(appControl, null,
function(){console.log("launch appControl succeeded");},
function(e){console.log("launch appControl failed. Reason: " + e.name);} );
}
Is it possible to hide the location/address bar and add a close button? It is inconvenient having to press the back button several times to go back to the app.