Page 1 of 1

How can i navigate to a new screen via java script alert

Posted: Wed Apr 04, 2012 11:35 pm
by mcgrathken.kmg

I cannot seem to navigate to a screen after user clicks ok


How can i navigate to a new screen via java script alert

Posted: Wed Apr 04, 2012 11:37 pm
by mcgrathken.kmg

sorry got it working using this

var r=confirm("Warning! GPS is required");
if (r==true)
{
Tiggr.navigateTo('Geolocation');
}
else
{
//do nothing
}