I have the following javascript on the device ready event (I have also tested it with the "load" event) on the start page.
var URL = encodeURI(url);
var ref = window.open('http://www.google.com', '_blank');
alert('ref='+ref);
The web page does not appear on my ApperyIo App on my iphone (I know it is not supposed to work on the chrome web browser). The alert window does not appear either. Can you tell me what is wrong?
If I comment out the 'encod..' line and the 'window..' line the alert will show on my iPhone.
suggestions?