Wait, I think that I need to write some other things.
My app works: I get some ajax data from the server, childbrowser works when I click on a Link, but my problem is with google maps and childbrowser: an empty page (
about:blank) is called when my app "exec"
$('#come_arrivare2').live('pageshow',function (event,ui) {
//event.preventDefault();
navigator.geolocation.getCurrentPosition(storePosition, errorgeo);
//navigator.geolocation.getCurrentPosition(storePosition, errorgeo,{ maximumAge:1000,timeout:3000,enableHighAccuracy: false });
return false;
});
And only the first time.
So, to remove the problem I think that I could open my links into an external safari browser, but how ?
M.
--