function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Dmitry LisovskyDmitry Lisovsky 

Child browser sf1

How open link in child browser on iOS and android application? 
subra_SFDCsubra_SFDC
This may help you
http://stackoverflow.com/questions/15666258/phonegap-build-open-external-page-in-inappbrowser-or-childbrowser-with-no-tool
Dmitry LisovskyDmitry Lisovsky
Is it help with salsforce 1 application fro iOS and android? Whether the salesforce1 is a phonegap application?
Dmitry LisovskyDmitry Lisovsky
windows.open does not work with android sf1 app

Dmitry LisovskyDmitry Lisovsky
To open link in native browser will need to click on tag <a> with href with reference which is different from the current domain. But click from javascript does not work with android 4.2 and 4.3 (only 4.4). To resolve this problem you need to use the following code:
var ele = document.getElementById('yourAnchorId');
var click_ev = document.createEvent("MouseEvent");
click_ev.initEvent("click", false /* bubble */, true /* cancelable */);
ele.dispatchEvent(click_ev);